Euromillions Millionaire code model.
This commit is contained in:
@@ -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; }
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user