1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-07 23:33:52 +00:00
Radarr/UI/Quality/qualityProfileModel.js

13 lines
274 B
JavaScript
Raw Normal View History

2013-05-01 22:42:30 +00:00
"use strict";
define(['app', 'backbone.deepmodel'], function (App, DeepModel) {
NzbDrone.Quality.QualityProfileModel = DeepModel.DeepModel.extend({
defaults: {
id : null,
name : '',
cutoff: null
}
});
});