Files
noahspan-flying/api/src/log/log.dto.ts
2025-10-24 08:31:13 -05:00

29 lines
684 B
TypeScript

import { PilotEntity } from "src/pilot/pilot.entity";
export class LogDto {
pilotId: string;
date: Date;
aircraftMakeModel: string;
aircraftIdentity: string;
routeFrom: string;
routeTo: string;
durationOfFlight?: number;
singleEngineLand?: number;
simulatorAtd?: number;
landingsDay?: number;
landingsNight?: number;
instrumentActual?: number;
instrumentSimulated?: number;
instrumentApproaches?: number;
instrumentHolds?: number;
instrumentNavTrack?: number;
groundTrainingReceived?: number;
flightTrainingReceived?: number;
crossCountry?: number;
night?: number;
solo?: number;
pilotInCommand?: number;
notes?: string;
tracks?: []
}