Euromillions Millionaire code model.

This commit is contained in:
2024-02-13 13:21:56 +00:00
parent d3e651ef89
commit 34918e6c38

View File

@@ -0,0 +1,14 @@
using Microsoft.EntityFrameworkCore;
namespace lottery_co_uk_scraper.core.Models.EuroMillions
{
[Index(nameof(DrawNumber), nameof(RaffleCode), IsUnique = true)]
public class EurosRaffleResult
{
public int Id { get; set; }
public int DrawNumber { get; set; }
public string RaffleCode { get; set; }
}
}