ff-admin/src/viewmodels/admin/award.models.ts

14 lines
201 B
TypeScript
Raw Normal View History

2024-09-09 11:13:45 +00:00
export interface AwardViewModel {
id: number;
award: string;
}
2024-09-15 11:52:54 +00:00
export interface CreateAwardViewModel {
award: string;
}
export interface UpdateAwardViewModel {
id: number;
2024-09-09 11:13:45 +00:00
award: string;
}