dustin@946: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
dustin@946:  * Software engineering by Intevation GmbH
dustin@946:  *
dustin@946:  * This file is Free Software under the GNU GPL (v>=3)
dustin@946:  * and comes with ABSOLUTELY NO WARRANTY! Check out
dustin@946:  * the documentation coming with IMIS-Labordaten-Application for details.
dustin@946:  */
dustin@946: 
dustin@946: /**
dustin@946:  * Model class for StatusWerte
dustin@946:  */
dustin@946: Ext.define('Lada.model.StatusWerte', {
dustin@946:     extend: 'Ext.data.Model',
dustin@946: 
dustin@946:     fields: [{
dustin@946:         name: 'id'
dustin@946:     }, {
dustin@956:         name: 'wert',
dustin@956:         type: 'string'
dustin@946:     }],
dustin@946: 
dustin@946:     idProperty: 'id',
dustin@946: 
dustin@946:     proxy: {
dustin@946:         type: 'rest',
dustin@999:         url: 'lada-server/rest/statuswert',
dustin@946:         reader: {
dustin@946:             type: 'json',
dustin@946:             root: 'data'
dustin@946:         }
dustin@946:     }
dustin@946: 
dustin@946: });