forked from spen/seminar
8 lines
226 B
Ruby
8 lines
226 B
Ruby
|
class CustomAlbumVariable
|
||
|
include Mongoid::Document
|
||
|
field :count, type: Integer
|
||
|
field :progress_percent, type: String
|
||
|
field :progress_filename, type: String
|
||
|
field :finish, type: Boolean
|
||
|
field :notalive, type: Boolean
|
||
|
end
|