mirror of
https://github.com/php/web-doc-editor.git
synced 2026-03-25 17:52:18 +01:00
10 lines
245 B
JavaScript
10 lines
245 B
JavaScript
Ext.define('phpdoe.model.ConfigCard', {
|
|
extend : 'Ext.data.Model',
|
|
idProperty : 'id',
|
|
fields : [
|
|
{ name:'id', type:'string' },
|
|
{ name:'card', type:'string' },
|
|
{ name:'label', type:'string' }
|
|
]
|
|
});
|