12 lines
354 B
TypeScript
12 lines
354 B
TypeScript
import { Certificate } from './certificate/certificate.entity';
|
|
import { Endorsement } from './endorsement/endorsement.entity';
|
|
import { Medical } from './medical/medical.entity';
|
|
import { Profile } from './profile/profile.entity';
|
|
|
|
export class Pilot {
|
|
profile: Profile;
|
|
medical: Medical;
|
|
certificates: Certificate;
|
|
endorsements: Endorsement;
|
|
}
|