1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-24 14:12:03 +00:00
seahub/static/scripts/app/models/starred-file.js
2015-05-04 17:02:20 +08:00

11 lines
166 B
JavaScript

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