2013-05-01 22:42:30 +00:00
|
|
|
|
"use strict";
|
|
|
|
|
define(['app'], function () {
|
2013-05-24 06:14:11 +00:00
|
|
|
|
NzbDrone.Quality.QualityProfileModel = Backbone.DeepModel.extend({
|
2013-02-14 02:28:56 +00:00
|
|
|
|
|
|
|
|
|
defaults: {
|
2013-03-29 23:28:58 +00:00
|
|
|
|
id : null,
|
|
|
|
|
name : '',
|
2013-03-08 03:11:42 +00:00
|
|
|
|
cutoff: null
|
2013-02-14 02:28:56 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
2013-01-27 03:04:15 +00:00
|
|
|
|
|