gallery/app/models/album_variable.rb

8 lines
220 B
Ruby
Raw Normal View History

2019-11-05 13:14:34 +00:00
class AlbumVariable
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