85 lines
2.0 KiB
C#
85 lines
2.0 KiB
C#
namespace lottery_co_uk_scraper.core.Models
|
|
{
|
|
public class LottoResult
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public DateOnly DrawDate { get; set; }
|
|
|
|
public int DrawNumber { get; set; }
|
|
|
|
public bool Rollover { get; set; }
|
|
|
|
public bool Rolldown { get; set; }
|
|
|
|
public int BallSetUsed { get; set; }
|
|
|
|
public string MachineUsed { get; set; }
|
|
|
|
public int DrawnBall1 { get; set; }
|
|
|
|
public int DrawnBall2 { get; set; }
|
|
|
|
public int DrawnBall3 { get; set; }
|
|
|
|
public int DrawnBall4 { get; set; }
|
|
|
|
public int DrawnBall5 { get; set; }
|
|
|
|
public int DrawnBall6 { get; set; }
|
|
|
|
public int DrawnBonusBall { get; set; }
|
|
|
|
public int TotalMatched2 { get; set; }
|
|
|
|
public int Matched2Prize { get; set; }
|
|
|
|
public int Matched2PrizeFund { get; set; }
|
|
|
|
public int Matched2RolldownPrize { get; set; }
|
|
|
|
public int TotalMatched3 { get; set; }
|
|
|
|
public int Matched3Prize { get; set; }
|
|
|
|
public int Matched3PrizeFund { get; set; }
|
|
|
|
public int Matched3RolldownPrize { get; set; }
|
|
|
|
public int TotalMatched4 { get; set; }
|
|
|
|
public int Matched4Prize { get; set; }
|
|
|
|
public int Matched4PrizeFund { get; set; }
|
|
|
|
public int Matched4RolldownPrize { get; set; }
|
|
|
|
public int TotalMatched5 { get; set; }
|
|
|
|
public int Matched5Prize { get; set; }
|
|
|
|
public int Matched5PrizeFund { get; set; }
|
|
|
|
public int TotalMatched5PlusBonus { get; set; }
|
|
|
|
public int Matched5RolldownPrize { get; set; }
|
|
|
|
public int Matched5PlusBonusPrize { get; set; }
|
|
|
|
public int Matched5PlusBonusPrizeFund { get; set; }
|
|
|
|
public int Matched5PlusBonusRolldownPrize { get; set; }
|
|
|
|
public int TotalMatched6 { get; set; }
|
|
|
|
public int Matched6Prize { get; set; }
|
|
|
|
public int Matched6PrizeFund { get; set; }
|
|
|
|
public int Matched6RolldownPrize { get; set; }
|
|
|
|
public int TotalWinners { get; set; }
|
|
|
|
public int TotalPrizeFund {get; set;}
|
|
}
|
|
} |