12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Common;
- namespace Models
- {
-
-
-
- public class LotteryData
- {
-
-
-
- public string ID { get; set; }
-
-
-
-
- public string MenuName { get; set; }
-
-
-
- public SCCLottery LotteryType { get; set; }
-
-
-
- public string LotteryName { get; set; }
-
-
-
- public string Term { get; set; }
-
-
-
- public string OpenTime { get; set; }
-
-
-
- public string[] RedBall { get; set; }
-
-
-
- public string[] BlueBall { get; set; }
-
-
-
- public int BallCount { get; set; }
-
-
-
- public string MoneyPond { get; set; }
-
-
-
- public string MoneyCount { get; set; }
-
-
-
- public List<LotteryResults> ResultsList { get; set; }
-
-
-
- public List<LotteryDetail> Details { 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; }
- }
- }
|