11 lines
180 B
Ruby
11 lines
180 B
Ruby
|
class TrackData
|
||
|
include Mongoid::Document
|
||
|
store_in :track_data
|
||
|
|
||
|
key :id, Integer
|
||
|
key :artist, String
|
||
|
key :title, String
|
||
|
key :length, Integer
|
||
|
key :files, Array
|
||
|
end
|