using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Server.Data.ClubDef { /// /// 竞技比赛玩法玩家数据 /// public class ClubWayPlayer { /// /// 竞技比赛id /// public int clubid; /// /// 玩法id /// public string wayid; /// /// 桌子的唯一码 /// public string weiyima; /// /// 玩家数量 /// public int playerCnt; } }