1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-05-03 21:46:47 +00:00
seahub/static/scripts/sysadmin-app/models/device-error.js
2016-04-23 18:07:09 +08:00

12 lines
189 B
JavaScript

define([
'underscore',
'backbone',
'common',
], function(_, Backbone, Common) {
'use strict';
var DeviceError = Backbone.Model.extend({});
return DeviceError;
});