]> git.proxmox.com Git - sencha-touch.git/blob - src/examples/navigationview/app/model/Contact.js
import Sencha Touch 2.4.2 source
[sencha-touch.git] / src / examples / navigationview / app / model / Contact.js
1 Ext.define('AddressBook.model.Contact', {
2 extend: 'Ext.data.Model',
3
4 config: {
5 fields: [
6 'firstName',
7 'lastName',
8 'headshot',
9 'title',
10 'telephone',
11 'city',
12 'state',
13 'country',
14 'latitude',
15 'longitude'
16 ]
17 }
18 });