bigbluebutton-Github/labs/html5-embed/public/js/models/user.js

15 lines
234 B
JavaScript
Raw Normal View History

2012-10-26 05:12:21 +08:00
define([
'underscore',
'backbone'
], function(_, Backbone) {
var UserModel = Backbone.Model.extend({
defaults: {
name: "Asyong"
},
initialize: function(){
}
});
return UserModel;
});