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

20 lines
419 B
JavaScript

/**
* FormulaGroups.js
*
* Created by Alexey.Musinov on 11/04/14
* Copyright (c) 2014 Ascensio System SIA. All rights reserved.
*
*/
define([
'backbone',
'spreadsheeteditor/main/app/model/Formula'
], function(Backbone) {
'use strict';
SSE.Collections = SSE.Collections || {};
SSE.Collections.FormulaGroups = Backbone.Collection.extend({
model: SSE.Models.FormulaGroup
});
});