web-apps/apps/spreadsheeteditor/main/app/model/TableTemplate.js

26 lines
575 B
JavaScript
Raw Normal View History

2016-03-11 00:48:53 +00:00
/**
* 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
}
}
});
});