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
2013-06-14 16:18:37 -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
}
});
});