adding endorsements to pilot form (#58)

This commit was merged in pull request #58.
This commit is contained in:
2025-03-02 17:43:33 +00:00
committed by GitHub
parent 8f1dc5cb61
commit 393364feb6
18 changed files with 170 additions and 310 deletions

View File

@@ -1,4 +1,5 @@
import { Certificate } from "./certificate/certificate.entity";
import { Endorsement } from "./endorsement/endorsement.entity";
export class PilotDto {
partitionKey: string;
@@ -14,4 +15,5 @@ export class PilotDto {
medicalClass?: string;
medicalExpiration?: string;
certificates: Certificate;
endorsements: Endorsement
}