[SDC-29] catalog 1707 rebase commit.
[sdc.git] / catalog-ui / src / app / models / activity.ts
1 /**
2  * Created by obarda on 19/11/2015.
3  */
4 'use strict';
5
6 /*this is in uppercase because of the server response*/
7 export class Activity {
8     TIMESTAMP:string;
9     ACTION:string;
10     MODIFIER:string;
11     STATUS:string;
12     DESC:string;
13     COMMENT:string;
14     //custom data
15     public dateFormat:string;
16
17     constructor() {
18     }
19
20     public toJSON = ():any => {
21         this.dateFormat = undefined;
22         return this;
23     };
24
25 }
26
27