1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-06 19:49:02 +00:00
Sonarr/UI/Series/EpisodeModel.js

14 lines
239 B
JavaScript
Raw Normal View History

2013-06-21 23:24:24 -07:00
'use strict';
define(
[
'backbone'
], function (Backbone) {
return Backbone.Model.extend({
defaults: {
seasonNumber: 0,
status : 0
}
});
2013-03-02 11:13:23 -08:00
});