import type { MemberViewModel } from "../../club/member/member.models"; export interface RespiratoryWearerViewModel { id: string; memberId: string; member: MemberViewModel; } export interface CreateRespiratoryWearerViewModel { memberId: string; } export interface UpdateRespiratoryWearerViewModel { id: string; memberId: string; }