aboutsummaryrefslogtreecommitdiff
path: root/app/interfaces
diff options
context:
space:
mode:
authorAlex Tatiyants <atatiyan@gmail.com>2016-01-03 17:17:48 -0800
committerAlex Tatiyants <atatiyan@gmail.com>2016-01-03 17:17:48 -0800
commit5310ac7d8eb1838a6297117bc7f9fca70291f46a (patch)
tree28f54b184cb85f04e6d6720dd03258f3728fedde /app/interfaces
initial commit
Diffstat (limited to 'app/interfaces')
-rw-r--r--app/interfaces/iplan.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/interfaces/iplan.ts b/app/interfaces/iplan.ts
new file mode 100644
index 0000000..bd08478
--- /dev/null
+++ b/app/interfaces/iplan.ts
@@ -0,0 +1,7 @@
+export interface IPlan {
+ id: string;
+ name: string;
+ content: any;
+ query: string;
+ createdOn: Date;
+}