1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-03-04 10:28:08 +00:00
Lidarr/UI/Series/SeasonModel.js

14 lines
210 B
JavaScript
Raw Normal View History

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