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

13 lines
184 B
TypeScript
Raw Normal View History

2024-09-05 14:17:22 +00:00
export interface CreateAwardCommand {
award: string;
}
export interface UpdateAwardCommand {
id: number;
award: string;
}
export interface DeleteAwardCommand {
id: number;
}