37 lines
747 B
JavaScript
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
|
|
}
|
|
}
|
|
});
|
|
});
|