diff --git a/lottery-co-uk-scraper.core/Models/EuroMillions/EurosRaffleResult.cs b/lottery-co-uk-scraper.core/Models/EuroMillions/EurosRaffleResult.cs new file mode 100644 index 0000000..5670850 --- /dev/null +++ b/lottery-co-uk-scraper.core/Models/EuroMillions/EurosRaffleResult.cs @@ -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; } + } +} \ No newline at end of file