You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-csc/app/model/Addressbook.js

45 lines
849 B

Ext.define('NgcpCsc.model.Addressbook', {
extend: 'Ext.data.Model',
fields: [{
name: 'name',
type: 'string'
}, {
name: 'firstname',
type: 'string'
}, {
name: 'lastname',
type: 'string'
}, {
name: 'company',
type: 'string'
}, {
name: 'firstname_initial',
type: 'string'
}, {
name: 'lastname_initial',
type: 'string'
}, {
name: 'company_initial',
type: 'string'
}, {
name: 'home',
type: 'string'
}, {
name: 'office',
type: 'string'
}, {
name: 'mobile',
type: 'string'
}, {
name: 'fax',
type: 'string'
}, {
name: 'e_mail',
type: 'string'
}, {
name: 'homepage',
type: 'string'
}]
});