1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-13 09:56:01 +00:00
Sonarr/NzbDrone.Backbone/Calendar/CalendarModel.js

11 lines
194 B
JavaScript
Raw Normal View History

define(['app'], function (app) {
NzbDrone.Calendar.CalendarModel = Backbone.Model.extend({
mutators: {
},
defaults: {
status: 0
}
});
});