1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-05-07 23:48:23 +00:00
seahub/static/scripts/sysadmin-app/models/device-error.js

12 lines
189 B
JavaScript
Raw Normal View History

2016-04-23 10:07:09 +00:00
define([
'underscore',
'backbone',
'common',
], function(_, Backbone, Common) {
'use strict';
var DeviceError = Backbone.Model.extend({});
return DeviceError;
});