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

14 lines
201 B
TypeScript
Raw Normal View History

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