20 lines
377 B
TypeScript
20 lines
377 B
TypeScript
export interface TemplateViewModel {
|
|
id: number;
|
|
template: string;
|
|
description: string | null;
|
|
design: object;
|
|
html: string;
|
|
}
|
|
|
|
export interface CreateTemplateViewModel {
|
|
template: string;
|
|
description: string | null;
|
|
}
|
|
|
|
export interface UpdateTemplateViewModel {
|
|
id: number;
|
|
template: string;
|
|
description: string | null;
|
|
design: object;
|
|
html: string;
|
|
}
|