10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
|
export interface TemplateViewModel {
|
||
|
id: number;
|
||
|
template: string;
|
||
|
description: string | null;
|
||
|
design: object;
|
||
|
headerHTML: string;
|
||
|
bodyHTML: string;
|
||
|
footerHTML: string;
|
||
|
}
|