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

26 lines
516 B
JavaScript

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