1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-29 16:37:56 +00:00
seahub/static/scripts/app/models/dirent.js

11 lines
156 B
JavaScript
Raw Normal View History

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