using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ProjectAirline.Entities.Enums; public enum EmployeePost { None = 0, FlightAttendant = 1, FlightEngineer = 2, Pilot = 3 }