From 298cfa53d9589e025e8a29bb380e640e9873df5b Mon Sep 17 00:00:00 2001 From: Ross Healy Date: Tue, 13 Feb 2024 14:20:38 +0000 Subject: [PATCH] Data model for game information --- .../Models/GameInformation.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 lottery-co-uk-scraper.core/Models/GameInformation.cs diff --git a/lottery-co-uk-scraper.core/Models/GameInformation.cs b/lottery-co-uk-scraper.core/Models/GameInformation.cs new file mode 100644 index 0000000..5117561 --- /dev/null +++ b/lottery-co-uk-scraper.core/Models/GameInformation.cs @@ -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; } + } +} \ No newline at end of file