21 lines
398 B
TypeScript
21 lines
398 B
TypeScript
|
export interface RespiratoryMissionViewModel {
|
||
|
id: string;
|
||
|
date: Date;
|
||
|
title: string;
|
||
|
description: string;
|
||
|
// refs to used respiratory gear and wearers
|
||
|
}
|
||
|
|
||
|
export interface CreateRespiratoryMissionViewModel {
|
||
|
date: Date;
|
||
|
title: string;
|
||
|
description: string;
|
||
|
}
|
||
|
|
||
|
export interface UpdateRespiratoryMissionViewModel {
|
||
|
id: string;
|
||
|
date: Date;
|
||
|
title: string;
|
||
|
description: string;
|
||
|
}
|