[SDC-29] catalog 1707 rebase commit.

Change-Id: I43c3dc5cf44abf5da817649bc738938a3e8388c1
Signed-off-by: Michael Lando <ml636r@att.com>
diff --git a/catalog-ui/src/app/models/activity.ts b/catalog-ui/src/app/models/activity.ts
new file mode 100644
index 0000000..d60e692
--- /dev/null
+++ b/catalog-ui/src/app/models/activity.ts
@@ -0,0 +1,27 @@
+/**
+ * Created by obarda on 19/11/2015.
+ */
+'use strict';
+
+/*this is in uppercase because of the server response*/
+export class Activity {
+    TIMESTAMP:string;
+    ACTION:string;
+    MODIFIER:string;
+    STATUS:string;
+    DESC:string;
+    COMMENT:string;
+    //custom data
+    public dateFormat:string;
+
+    constructor() {
+    }
+
+    public toJSON = ():any => {
+        this.dateFormat = undefined;
+        return this;
+    };
+
+}
+
+