web-apps/apps/spreadsheeteditor/mobile/app/model/Worksheet.js

9 lines
204 B
JavaScript
Raw Normal View History

2016-03-11 00:48:53 +00:00
Ext.define('SSE.model.Worksheet', {
extend: 'Ext.data.Model',
config: {
fields: [
{ name:'index', type: 'int' },
{ name:'text', type:'string' }
]
}
});