mirror of
https://github.com/php/web-doc-editor.git
synced 2026-03-26 02:02:10 +01:00
9 lines
243 B
JavaScript
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'}
|
|
]
|
|
}); |