Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / app / nested-loading / app / model / Review.js
1 /**
2  * Model for a books review.
3  */
4 Ext.define('Books.model.Review', {
5     extend: 'Ext.data.Model',
6
7     fields: [
8         'product_id',
9         'author',
10         'rating',
11         'date',
12         'title',
13         'comment'
14     ],
15     belongsTo: 'Books.model.Book'
16 });