Company.js 213 B

123456789
  1. Ext.define('saas.store.Company', {
  2. extend: 'Ext.data.Store',
  3. fields: [
  4. { name: 'id', type: 'int' },
  5. { name: 'name', type: 'string' },
  6. { name: 'logoUrl', type: 'string' }
  7. ]
  8. });