mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-25 14:43:15 +00:00
12 lines
187 B
JavaScript
12 lines
187 B
JavaScript
define([
|
|
'underscore',
|
|
'backbone',
|
|
'common',
|
|
], function(_, Backbone, Common) {
|
|
'use strict';
|
|
|
|
var Invitation = Backbone.Model.extend({});
|
|
|
|
return Invitation;
|
|
});
|