PageRenderTime 63ms CodeModel.GetById 42ms RepoModel.GetById 2ms app.codeStats 0ms

/ext-4.1.0_b3/examples/kitchensink/app/model/Restaurant.js

https://bitbucket.org/srogerf/javascript
JavaScript | 4 lines | 4 code | 0 blank | 0 comment | 0 complexity | 32e68c10375857e2041dda038768eafc MD5 | raw file
  1. Ext.define('KitchenSink.model.Restaurant', {
  2. extend: 'Ext.data.Model',
  3. fields: ['name', 'cuisine', 'description', {name:'rating', type:'float'}]
  4. });