12 lines
184 B
TypeScript
12 lines
184 B
TypeScript
export interface CreateAwardCommand {
|
|
award: string;
|
|
}
|
|
|
|
export interface UpdateAwardCommand {
|
|
id: number;
|
|
award: string;
|
|
}
|
|
|
|
export interface DeleteAwardCommand {
|
|
id: number;
|
|
}
|