123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using static Common.HongKongHelper;
- namespace KJH55128_Rec.ViewModels
- {
- public class LotteryViewModel
- {
- public string LotteryType { get; set; }
- public string LotteryText { get; set; }
- public Boolean HasLotteryZS { get; set; }
-
-
-
- public string LotteryName { get; set; }
-
-
-
- public string Term { get; set; }
- public string ID { get; set; }
- public string MenuName { get; set; }
-
-
-
- public string OpenTime { get; set; }
-
-
-
- public string[] RedBall { get; set; }
-
-
-
- public List<HongKongLottery> HKBall { get; set; }
-
-
-
- public string[] BlueBall { get; set; }
-
-
-
- public int BallCount { get; set; }
-
-
-
- public string MoneyPond { get; set; }
-
-
-
- public string MoneyCount { get; set; }
-
-
-
-
- public string KJTime { get; set; }
-
-
-
- public string StartHour { get; set; }
-
-
-
- public string StartMinute { get; set; }
-
-
-
- public string Interval { get; set; }
-
-
-
- public string TimesPerDay { get; set; }
-
-
-
- public string SkipDate { get; set; }
-
-
-
- public string NextOpenTime { get; set; }
-
-
-
- public string RuleId { get; set; }
-
-
-
- public string ShiJiHao { get; set; }
-
-
-
- public string KaiJiHao { get; set; }
-
-
-
- public int DaXiaoZJZ { get; set; }
-
-
-
- public string hezhi { get; set; }
-
-
-
- public string kuadu { get; set; }
-
-
-
- public string jio { get; set; }
-
-
-
- public string zihebi { get; set; }
-
-
-
- public string jioxt { get; set; }
-
-
-
- public string dxxt { get; set; }
-
-
-
- public string zotgsb { get; set; }
-
-
-
- public string sanqu { get; set; }
-
-
-
-
-
-
- public string daxiao { get; set; }
-
-
-
- public string shama { get; set; }
-
-
-
- public string danma { get; set; }
-
-
-
- public string zoushi { get; set; }
-
-
-
- public string gongju { get; set; }
-
-
-
- public string yuce { get; set; }
-
-
-
- public int ZhongZhi { get; set; }
- public List<LotteryDetail> Details { get; set; }
- public List<LotteryResults> Results { get; set; }
-
-
-
- public class LotteryDetail
- {
- public string Label { get; set; }
- public string Value { get; set; }
- }
- public class LotteryResults
- {
-
-
-
- public string LevelName { get; set; }
-
-
-
- public string Money { get; set; }
-
-
-
- public int Count { get; set; }
- }
- }
- }
|