web-apps/apps/documenteditor/main/app/model/ShapeGroup.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

37 lines
747 B
JavaScript

/**
* ShapeGroup.js
*
* Created by Alexander Yuzhin on 2/10/14
* Copyright (c) 2014 Ascensio System SIA. All rights reserved.
*
*/
define([
'backbone'
], function(Backbone){ 'use strict';
DE.Models = DE.Models || {};
DE.Models.ShapeModel = Backbone.Model.extend({
defaults: function() {
return {
id: Common.UI.getId(),
imageUrl: null,
data: null
}
}
});
DE.Models.ShapeGroup = Backbone.Model.extend({
defaults: function() {
return {
id: Common.UI.getId(),
groupName: null,
groupId: null,
groupStore: null
}
}
});
});