1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-05 14:32:23 +00:00
Lidarr/UI/Shared/Footer/Model.js

12 lines
222 B
JavaScript
Raw Normal View History

2013-06-15 04:02:40 +00:00
"use strict";
define(['app'], function () {
NzbDrone.Shared.Footer.Model = Backbone.Model.extend({
defaults: {
'version' : '0.0.0.0'
}
});
return NzbDrone.Shared.Footer.Model;
});