16 lines
346 B
TypeScript
16 lines
346 B
TypeScript
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;
|
|
}
|