ff-admin-server/src/command/configuration/education/educationCommand.ts

15 lines
252 B
TypeScript
Raw Normal View History

2025-06-03 15:20:46 +02:00
export interface CreateEducationCommand {
education: string;
description?: string;
}
export interface UpdateEducationCommand {
id: number;
education: string;
description?: string;
}
export interface DeleteEducationCommand {
id: number;
}