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

26 lines
575 B
JavaScript

/**
* TableTemplate.js
*
* Created by Alexander Yuzhin on 4/7/14
* Copyright (c) 2014 Ascensio System SIA. All rights reserved.
*
*/
define([
'backbone'
], function(Backbone){ 'use strict';
SSE.Models = SSE.Models || {};
SSE.Models.TableTemplate = Backbone.Model.extend({
defaults: function() {
return {
id : Common.UI.getId(),
name : null,
caption : null,
type : null,
imageUrl : null
}
}
});
});