using System.Collections.Generic; using GameMessage; namespace GameFix.Poker { public abstract class GameOverInfo1 where T : ICardInfoType1 { public string NickName { get; set; } public int Sex { get; set; } public string avter { get; set; } public int UserId { get; set; } /// /// 赏的数值 /// public int Shang { get; set; } /// /// 讨赏分 /// public int ShangScore { get; set; } /// /// 输赢分 /// public int ShuYin { get; set; } /// /// 得分 /// public int DeFen { get; set; } /// /// 总得分 /// public int ZongDeFen { get; set; } public List ZhaDans { get; set; } } }