mirror of
https://github.com/Radarr/Radarr
synced 2024-12-27 10:19:41 +00:00
769331d45d
single quotes
12 lines
274 B
JavaScript
12 lines
274 B
JavaScript
'use strict';
|
|
define(['app', 'backbone.deepmodel'], function (App, DeepModel) {
|
|
NzbDrone.Quality.QualityProfileModel = DeepModel.DeepModel.extend({
|
|
|
|
defaults: {
|
|
id : null,
|
|
name : '',
|
|
cutoff: null
|
|
}
|
|
});
|
|
});
|
|
|