m
[playfm2.git] / vendor / plugins / facebooker / lib / facebooker / models / work_info.rb
blobf8527646a62bb2914713b79a7eeb9a7659d35ff6
1 module Facebooker
2   class WorkInfo
3     include Model
4     attr_accessor :end_date, :start_date, :company_name, :description, :position
5     attr_reader :location
6     def location=(location)
7       @location = location.kind_of?(Hash) ? Location.from_hash(location) : location
8     end
9   end
10 end