namespace asg_form.Controllers.Team { public class T_Team { public List Events { get; set; }=new List(); public long Id { get; set; } public bool is_check { get; set; } public int piaoshu { get; set; } public long time { get; set; } public string team_name { get; set; } public string team_password { get; set; } public string team_tel { get; set; } public string logo_uri { get; set; } // public string? belong { get; set; } public List role { get; set; } = new List(); } public class T_Player { public long Id { get; set; } public T_Team Team { get; set; }//属于哪个队伍 public string role_id { get; set; } = "无"; public string role_name { get; set; } = "无";//阵容 public string? Game_Name { get; set; } = "未知"; public string role_lin { get; set; } public string? Id_Card { get; set; } = "未知"; public string? Common_Roles { get; set; } = "未知"; public string? Phone_Number { get; set; } = "未知"; public string? Id_Card_Name { get; set; } = "未知"; public int? Historical_Ranks { get; set; } = 0; } }