1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-27 10:19:41 +00:00
Radarr/UI/Quality/qualityProfileModel.js
kay.one 769331d45d updated jshint to 2.1.3
single quotes
2013-06-21 23:24:24 -07:00

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
}
});
});