UNPKG

extjs-gpl

Version:

GPL licensed version of Sencha Ext JS

16 lines (14 loc) 348 B
/** * This entity represents a project which is a container for tickets. */ Ext.define('Ticket.model.Project', { extend: 'Ticket.model.Base', fields: [ 'name', { name: 'organizationId', reference: 'Organization' }, { name: 'leadId', unique: true, reference: 'User' } ] });