Blame view

ihm/app/model/Session.js 409 Bytes
346b85c6   Benjamin Renard   First commit with...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Ext.define('treps.model.Session', {
	extend: 'Ext.data.Model',
	
	singleton : true,
	
	fields: [
		{
			name: 'id',
			type: 'string'
		},
		{
			name: 'stepId',
			type: 'string'
		},
		{
			name: 'sourceTimeFormat',
			type: 'string'
		},
		{
			name: 'sourceTimePattern',
			type: 'string'
		},
		{
			name: 'exportFormat',
			type: 'string'
		},
		{
			name: 'kernelVersion',
			type: 'string'
		}
	]
});