enhance: add membership total view in member

This commit is contained in:
Julian Krauser 2025-05-30 15:13:50 +02:00
parent 0defc9b0ba
commit ec0222ff2f
3 changed files with 37 additions and 4 deletions

View file

@ -21,6 +21,18 @@ export interface MembershipStatisticsViewModel {
memberBirthdate: Date;
}
export interface MembershipTotalStatisticsViewModel {
durationInDays: number;
durationInYears: number;
exactDuration: string;
memberId: string;
memberSalutation: string;
memberFirstname: string;
memberLastname: string;
memberNameaffix: string;
memberBirthdate: Date;
}
export interface CreateMembershipViewModel {
start: Date;
statusId: number;