Retrieve the tunnel flights

Show the list of tunnel flights
This commit is contained in:
Sébastien ANDRE
2023-07-21 19:49:13 +02:00
parent 54dc6ae57e
commit 320ea8c8f3
10 changed files with 166 additions and 49 deletions

View File

@@ -1,3 +1,5 @@
import { DropZoneResp } from './dropzone';
export class TunnelFlightReq {
constructor(data: any) {
Object.assign(this, data);
@@ -30,7 +32,7 @@ export class TunnelFlight {
}
public id: number;
public tunnelId: number;
public tunnel: DropZoneResp;
public nbMinutes: number;
public notes: string;
public flightDate: Date;