diff options
Diffstat (limited to 'app/interfaces')
-rw-r--r-- | app/interfaces/iplan.ts | 7 |
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; +} |