1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-21 10:30:03 +00:00
seahub/static/scripts/sysadmin-app/models/library.js

12 lines
191 B
JavaScript
Raw Normal View History

2016-05-25 02:45:22 +00:00
define([
'underscore',
'backbone',
'common',
], function(_, Backbone, Common) {
'use strict';
var LibraryModel = Backbone.Model.extend({});
return LibraryModel;
});