using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FCS.Models.DTO { public class AgainstTypeDTO { /// /// 编码(14、6、4) /// public int Code { get; set; } /// /// 页面URL /// public string Url { get; set; } /// /// 彩种 /// public string CaiZhong { get; set; } /// /// 彩种ID /// public string LotteryId { get; set; } /// /// 期数url1 /// public string SessionUrl1 { get; set; } /// /// 期数url2 /// public string SessionUrl2 { get; set; } } /// /// 期数 /// public class AgainstSession { /// /// 期数 /// public string issue { get; set; } /// /// 状态 /// public string status { get; set; } } /// /// 比赛数据 /// public class AgainstGamesData { public IEnumerable matchInfo { get; set; } } public class AgainstGames { /// /// 彩果 /// public string code { get; set; } /// /// 平均欧赔 /// public string europeSp { get; set; } /// /// 比赛时间 /// public string gameStartDate { get; set; } /// /// 客队 /// public string guestNameFull { get; set; } /// /// 主队 /// public string hostNameFull { get; set; } /// /// 客队 /// public string guestName{ get; set; } /// /// 主队 /// public string hostName{ get; set; } /// /// 期数 /// public string issue { get; set; } /// /// 赛事名称 /// public string leageName { get; set; } /// /// 亚盘 /// public string yapan { get; set; } /// /// 足彩比分 /// public string zuizhongbifen { get; set; } } public class AgainstEntity:F_SixHalf { } }