1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-27 07:28:42 +00:00
seahub/static/scripts/app/models/device.js
2016-03-15 18:19:12 +08:00

11 lines
156 B
JavaScript

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