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

17 lines
293 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;
2024-12-22 17:29:11 +01:00
html: string;
2024-12-22 10:29:42 +01:00
}
export interface DeleteTemplateCommand {
id: number;
}