ucan-ext-js-kitchen-sink
Version:
my-ext-gen-app description for Ext JS app MyExtGenApp
16 lines (15 loc) • 481 B
JavaScript
Ext.define('UCANSink.model.Choice', {
extend: 'Ext.data.Model',
idProperty: 'customId',
fields: [
{name: 'id', type: 'auto', defaultValue: null},
{name: 'value', type: 'string'},
{name: 'factor', type: 'int'},
{name: 'sequence', type: 'int'},
{name: 'synonymGroup', type: 'int'},
{name: 'difficulty', type: 'auto'},
{name: 'discriminatoryPower', type: 'auto'},
{name: 'solution', type: 'boolean'},
{name: 'customId', type: 'auto'}
]
});