ff-admin/src/viewmodels/admin/unit/respiratory/respiratoryWearer.models.ts

17 lines
359 B
TypeScript
Raw Normal View History

2025-05-14 14:42:00 +02:00
import type { MemberViewModel } from "@/viewmodels/admin/club/member/member.models";
2025-03-25 10:42:40 +01:00
2025-03-26 12:45:14 +01:00
export interface RespiratoryWearerViewModel {
2025-03-25 10:42:40 +01:00
id: string;
2025-03-26 12:45:14 +01:00
memberId: string;
member: MemberViewModel;
2025-03-25 10:42:40 +01:00
}
export interface CreateRespiratoryWearerViewModel {
2025-03-26 12:45:14 +01:00
memberId: string;
2025-03-25 10:42:40 +01:00
}
export interface UpdateRespiratoryWearerViewModel {
id: string;
2025-03-26 12:45:14 +01:00
memberId: string;
2025-03-25 10:42:40 +01:00
}