add active runways and the arrival mode

This commit is contained in:
Sven Czarnian
2022-10-25 08:25:00 +02:00
parent 3e7f729106
commit e32292e509
3 changed files with 30 additions and 0 deletions

View File

@@ -51,6 +51,18 @@ export class Airport {
type: PlanningSchema,
})
planning: Planning;
@Prop({
type: [String],
})
activeRunways: string[];
@Prop({
enum: ['STAGGERED', 'IPA'],
default: 'STAGGERED',
type: String,
})
arrivalMode: string;
}
export const AirportSchema = SchemaFactory.createForClass(Airport);