|
@@ -0,0 +1,10 @@
|
|
|
+export class WorkBook {
|
|
|
+ public category: string;
|
|
|
+ public company: string;
|
|
|
+ public created: Date = new Date();
|
|
|
+ public description: string;
|
|
|
+ public keywords: string;
|
|
|
+ public manager: string;
|
|
|
+ public modified: Date = this.created;
|
|
|
+ public properties: null;
|
|
|
+}
|