template storing

This commit is contained in:
Julian Krauser 2024-12-22 10:29:31 +01:00
parent 467dfd8c1b
commit 78a9d206c3
11 changed files with 581 additions and 63 deletions

View file

@ -0,0 +1,24 @@
export interface TemplateViewModel {
id: number;
template: string;
description: string | null;
design: object;
headerHTML: string;
bodyHTML: string;
footerHTML: string;
}
export interface CreateTemplateViewModel {
template: string;
description: string | null;
}
export interface UpdateTemplateViewModel {
id: number;
template: string;
description: string | null;
design: object;
headerHTML: string;
bodyHTML: string;
footerHTML: string;
}