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