mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-20 12:22:24 +00:00
12 lines
195 B
JavaScript
12 lines
195 B
JavaScript
|
define([
|
||
|
'underscore',
|
||
|
'backbone',
|
||
|
'common'
|
||
|
], function(_, Backbone, Common) {
|
||
|
'use strict';
|
||
|
|
||
|
var DeviceTrustedIP = Backbone.Model.extend({});
|
||
|
|
||
|
return DeviceTrustedIP;
|
||
|
})
|