]> git.proxmox.com Git - sencha-touch.git/blob - src/examples/touchtomatoes/app/model/Movie.js
import Sencha Touch 2.4.2 source
[sencha-touch.git] / src / examples / touchtomatoes / app / model / Movie.js
1 Ext.define('TouchTomatoes.model.Movie', {
2 extend: 'Ext.data.Model',
3
4 config: {
5 fields: [
6 { name: "id", type: "string"},
7 { name: "title", type: "string" },
8 { name: "synopsis", type: "string" },
9 { name: "year", type: "int" },
10 { name: "mpaa_rating", type: "string" },
11 { name: "runtime", type: "int" },
12 { name: "posters"},
13 { name: "abridged_cast"},
14 { name: "ratings"}
15 ]
16 }
17 });