using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EggLink.DanhengServer.Enums { public enum PlayerGender { PLAYER_MALE = 0, PLAYER_FEMALE = 1, } }