1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00

13 lines
219 B
JavaScript
Raw Normal View History

2013-06-21 23:24:24 -07:00
'use strict';
2013-06-20 22:19:41 -07:00
define(
[
'backbone',
'sugar'
], function (Backbone) {
return Backbone.Model.extend({
defaults: {
freeSpace: 0
}
});
});