16 lines
293 B
TypeScript
16 lines
293 B
TypeScript
export interface CreateTemplateCommand {
|
|
template: string;
|
|
description: string | null;
|
|
}
|
|
|
|
export interface UpdateTemplateCommand {
|
|
id: number;
|
|
template: string;
|
|
description: string | null;
|
|
design: object;
|
|
html: string;
|
|
}
|
|
|
|
export interface DeleteTemplateCommand {
|
|
id: number;
|
|
}
|