mirror of
https://github.com/php/web-doc-editor.git
synced 2026-03-26 02:02:10 +01:00
10 lines
255 B
JavaScript
10 lines
255 B
JavaScript
Ext.define('phpdoe.model.Language', {
|
|
extend : 'Ext.data.Model',
|
|
idProperty : 'code',
|
|
fields : [
|
|
{name : 'code', type : 'string'},
|
|
{name : 'iconCls', type : 'string'},
|
|
{name : 'name', type : 'string'}
|
|
]
|
|
});
|