19 lines
271 B
C#
Raw Permalink Normal View History

2024-12-11 09:33:12 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectAirline.Entities.Enums;
public enum EmployeePost
2024-11-27 00:03:35 +04:00
{
2024-12-11 09:33:12 +04:00
None = 0,
FlightAttendant = 1,
FlightEngineer = 2,
Pilot = 3
}