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/CallForwardTimeset.js

28 lines
485 B

Ext.define('NgcpCsc.model.CallForwardTimeset', {
extend: 'Ext.data.Model',
fields: [{
name: 'id',
type: 'string'
}, {
name: 'timeset_name',
type: 'auto'
}, {
name: 'timeset_id',
type: 'auto'
}, {
name: 'time_from',
type: 'auto'
}, {
name: 'time_to',
type: 'auto'
}, {
name: 'day',
type: 'auto'
}, {
name: 'closed',
type: 'auto'
}]
});