1
0
Fork 0
robbie/lib/robbie/models/track.rb

12 lines
210 B
Ruby
Raw Normal View History

2012-08-26 04:09:00 +00:00
module Robbie
class Track < BaseModel
attr_accessor :id, :disc_id, :position, :artists, :title, :duration
2012-08-26 04:36:26 +00:00
class << self
def find(id)
Parsers::Track.find(id)
end
end
2012-08-26 04:09:00 +00:00
end
end