Add the jump type in the tunnel flight
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { formatDate } from '@angular/common';
|
||||
import { DropZoneResp } from './dropzone';
|
||||
import { JumpTypeResp } from './jumpType';
|
||||
|
||||
export class TunnelFlightReq {
|
||||
constructor(data: any) {
|
||||
@@ -8,6 +9,7 @@ export class TunnelFlightReq {
|
||||
|
||||
public id: number;
|
||||
public tunnelId: number;
|
||||
public jumpTypeId: number;
|
||||
public nbMinutes: number;
|
||||
public notes: string;
|
||||
public flightDate: string;
|
||||
@@ -21,6 +23,7 @@ export class TunnelFlightResp {
|
||||
|
||||
public id: number;
|
||||
public tunnelId: number;
|
||||
public jumpTypeId: number;
|
||||
public nbMinutes: number;
|
||||
public notes: string;
|
||||
public flightDate: Date;
|
||||
@@ -35,6 +38,7 @@ export class TunnelFlight {
|
||||
|
||||
public id: number;
|
||||
public tunnel: DropZoneResp;
|
||||
public jumpType: JumpTypeResp;
|
||||
public nbMinutes: number;
|
||||
public notes: string;
|
||||
public flightDate: Date;
|
||||
|
||||
Reference in New Issue
Block a user