using System.ComponentModel.DataAnnotations;
namespace BlueWest.Data;
public class Country
{
[Key] public int Code { get; }
public string StateName { get; }
public string TLD { get; }
}