1
2
3
4
5
6
7
8
9
10
| Ext.define('PageAnalyzer.models.LayoutTypeSummaryData', {
| extend: 'Ext.data.Model',
| fields: [
| { name: 'type', type: 'string' },
| { name: 'duration', type: 'float', defaultValue: 0.0 },
| { name: 'count', type: 'int', defaultValue: 0 },
| { name: 'layoutCount', type: 'int'}
| ]
|
| });
|
|