24 lines
751 B
C#
24 lines
751 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using IndexAttribute = Microsoft.EntityFrameworkCore.IndexAttribute;
|
|
|
|
namespace Elwig.Models.Entities {
|
|
[Table("country"), PrimaryKey("Num"), Index("Alpha2", IsUnique = true), Index("Alpha3", IsUnique = true)]
|
|
public class Country {
|
|
[Column("num")]
|
|
public int Num { get; private set; }
|
|
|
|
[Column("alpha2")]
|
|
public string Alpha2 { get; private set; } = null!;
|
|
|
|
[Column("alpha3")]
|
|
public string Alpha3 { get; private set; } = null!;
|
|
|
|
[Column("name")]
|
|
public string Name { get; private set; } = null!;
|
|
|
|
[Column("is_visible")]
|
|
public bool IsVisible { get; private set; }
|
|
}
|
|
}
|