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

11 lines
166 B
JavaScript
Raw Normal View History

2015-05-04 09:02:20 +00:00
define([
'underscore',
'backbone'
], function(_, Backbone) {
'use strict';
var StarredFile = Backbone.Model.extend({});
return StarredFile;
});