Files
web-doc-editor/js/model/File.js
2012-04-25 20:25:03 +04:00

9 lines
243 B
JavaScript

Ext.define('phpdoe.model.File', {
extend : 'Ext.data.Model',
idProperty : 'id',
fields : [
{name : 'id', type : 'string'},
{name : 'text', type : 'string'},
{name : 'type', type : 'string'}
]
});