ff-admin-server/src/command/templateCommand.ts

19 lines
341 B
TypeScript
Raw Normal View History

2024-12-22 10:29:42 +01:00
export interface CreateTemplateCommand {
template: string;
description: string | null;
}
export interface UpdateTemplateCommand {
id: number;
template: string;
description: string | null;
design: object;
headerHTML: string;
bodyHTML: string;
footerHTML: string;
}
export interface DeleteTemplateCommand {
id: number;
}