2025-03-26 12:45:14 +01:00
|
|
|
import type { EquipmentViewModel } from "../equipment/equipment.models";
|
2025-03-25 10:42:40 +01:00
|
|
|
|
2025-03-26 12:45:14 +01:00
|
|
|
export interface RespiratoryGearViewModel {
|
2025-03-25 10:42:40 +01:00
|
|
|
id: string;
|
2025-03-26 12:45:14 +01:00
|
|
|
equipmentId: string;
|
|
|
|
equipment: EquipmentViewModel;
|
2025-03-25 10:42:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface CreateRespiratoryGearViewModel {
|
2025-03-26 12:45:14 +01:00
|
|
|
equipmentId: string;
|
2025-03-25 10:42:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface UpdateRespiratoryGearViewModel {
|
|
|
|
id: string;
|
2025-03-26 12:45:14 +01:00
|
|
|
equipmentId: string;
|
2025-03-25 10:42:40 +01:00
|
|
|
}
|