unit data collections

This commit is contained in:
Julian Krauser 2025-03-24 17:16:07 +01:00
parent 2a77a950f5
commit b6d6dd0796
12 changed files with 754 additions and 7 deletions

View file

@ -0,0 +1,39 @@
export interface EquipmentTypeViewModel {
id: string;
firstname: string;
lastname: string;
nameaffix: string;
birthdate: Date;
internalId?: string;
}
export interface EquipmentTypeStatisticsViewModel {
id: string;
salutation: string;
firstname: string;
lastname: string;
nameaffix: string;
birthdate: Date;
todayAge: number;
ageThisYear: number;
exactAge: string;
}
export interface CreateEquipmentTypeViewModel {
salutationId: number;
firstname: string;
lastname: string;
nameaffix: string;
birthdate: Date;
internalId?: string;
}
export interface UpdateEquipmentTypeViewModel {
id: string;
salutationId: number;
firstname: string;
lastname: string;
nameaffix: string;
birthdate: Date;
internalId?: string;
}