1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-07 15:20:58 +02: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
});