1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-20 10:00:00 +00:00
seahub/static/scripts/sysadmin-app/models/trash-library.js
2016-06-14 14:46:13 +08:00

12 lines
190 B
JavaScript

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