13 lines
201 B
TypeScript
13 lines
201 B
TypeScript
export interface AwardViewModel {
|
|
id: number;
|
|
award: string;
|
|
}
|
|
|
|
export interface CreateAwardViewModel {
|
|
award: string;
|
|
}
|
|
|
|
export interface UpdateAwardViewModel {
|
|
id: number;
|
|
award: string;
|
|
}
|