mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
15 lines
283 B
JavaScript
15 lines
283 B
JavaScript
'use strict';
|
||
define(
|
||
[
|
||
'backbone.deepmodel'
|
||
], function (DeepModel) {
|
||
return DeepModel.DeepModel.extend({
|
||
defaults: {
|
||
id : null,
|
||
name : '',
|
||
cutoff: null
|
||
}
|
||
});
|
||
});
|
||
|