template storing

This commit is contained in:
Julian Krauser 2024-12-22 10:29:42 +01:00
parent 98477eafde
commit 160d82459d
12 changed files with 386 additions and 1 deletions

View file

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