Data model for game information
This commit is contained in:
17
lottery-co-uk-scraper.core/Models/GameInformation.cs
Normal file
17
lottery-co-uk-scraper.core/Models/GameInformation.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace lottery_co_uk_scraper.core.Models
|
||||
{
|
||||
internal class GameInformation
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string GameName { get; set; }
|
||||
|
||||
public DayOfWeek DrawDay { get; set; }
|
||||
|
||||
public TimeOnly DrawClosing { get; set; }
|
||||
|
||||
public TimeOnly DrawOpening { get; set; }
|
||||
|
||||
public TimeOnly DrawTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user