mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-11 10:26:57 +00:00
18 lines
319 B
JavaScript
18 lines
319 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'backbone'
|
|
], function (Backbone) {
|
|
return Backbone.Model.extend({
|
|
|
|
defaults: {
|
|
seasonNumber: 0
|
|
},
|
|
|
|
initialize: function () {
|
|
this.set('id', this.get('seasonNumber'));
|
|
}
|
|
});
|
|
});
|
|
|