mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-27 07:28:42 +00:00
11 lines
156 B
JavaScript
11 lines
156 B
JavaScript
define([
|
|
'underscore',
|
|
'backbone'
|
|
], function(_, Backbone) {
|
|
'use strict';
|
|
|
|
var Device = Backbone.Model.extend({});
|
|
|
|
return Device;
|
|
});
|