17 lines
377 B
C#
17 lines
377 B
C#
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; }
|
|
}
|
|
} |