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

17 lines
346 B
TypeScript
Raw Normal View History

2025-03-26 12:45:14 +01:00
import type { MemberViewModel } from "../../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
}