// This file has been auto generated by EF Core Power Tools.
#nullable enable
using System;
using System.Collections.Generic;
namespace MVC_SimpleCRUD_Layered.Data.Models;
public partial class Country
{
public string Code { get; set; } = null!;
public string Alpha3 { get; set; } = null!;
public string Name { get; set; } = null!;
public string? Translations { get; set; }
public virtual ICollection People { get; set; } = new List();
}