14 lines
346 B
C#
14 lines
346 B
C#
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; }
|
|
}
|
|
} |