ff-admin/src/viewmodels/admin/template.models.ts

21 lines
377 B
TypeScript
Raw Normal View History

2024-12-22 10:29:31 +01:00
export interface TemplateViewModel {
id: number;
template: string;
description: string | null;
design: object;
2024-12-22 17:28:56 +01:00
html: string;
2024-12-22 10:29:31 +01:00
}
export interface CreateTemplateViewModel {
template: string;
description: string | null;
}
export interface UpdateTemplateViewModel {
id: number;
template: string;
description: string | null;
design: object;
2024-12-22 17:28:56 +01:00
html: string;
2024-12-22 10:29:31 +01:00
}