summary refs log tree commit diff
path: root/src/schema/Template.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/schema/Template.ts')
-rw-r--r--src/schema/Template.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/schema/Template.ts b/src/schema/Template.ts
new file mode 100644

index 00000000..6d47aa75 --- /dev/null +++ b/src/schema/Template.ts
@@ -0,0 +1,10 @@ +export const TemplateCreateSchema = { + name: String, + $description: String, + +}; + +export interface TemplateCreateSchema { + name: string, + descriptio?: string, +}