2025-03-25 10:42:40 +01:00
|
|
|
export interface RespiratoryMissionViewModel {
|
|
|
|
id: string;
|
2025-03-26 12:45:14 +01:00
|
|
|
date: Date;
|
|
|
|
title: string;
|
|
|
|
description: string;
|
|
|
|
// refs to used respiratory gear and wearers
|
2025-03-25 10:42:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface CreateRespiratoryMissionViewModel {
|
2025-03-26 12:45:14 +01:00
|
|
|
date: Date;
|
|
|
|
title: string;
|
|
|
|
description: string;
|
2025-03-25 10:42:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface UpdateRespiratoryMissionViewModel {
|
|
|
|
id: string;
|
2025-03-26 12:45:14 +01:00
|
|
|
date: Date;
|
|
|
|
title: string;
|
|
|
|
description: string;
|
2025-03-25 10:42:40 +01:00
|
|
|
}
|