1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-28 02:40:01 +00:00
Radarr/UI/Series/EpisodeModel.js

13 lines
193 B
JavaScript
Raw Normal View History

2013-03-03 22:42:26 +00:00
define(['app'], function () {
NzbDrone.Series.EpisodeModel = Backbone.Model.extend({
2013-03-02 19:13:23 +00:00
mutators: {
},
defaults: {
seasonNumber: 0
}
});
});