1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-25 06:33:47 +00:00
seahub/static/scripts/app/models/group.js

11 lines
154 B
JavaScript
Raw Normal View History

2015-11-30 07:02:03 +00:00
define([
'underscore',
'backbone'
], function(_, Backbone) {
'use strict';
var Group = Backbone.Model.extend({});
return Group;
});