CodeLiturgy.Dashboard/BlueWest.Data.Capital/Country/CountryUnique.cs

27 lines
535 B
C#
Raw Normal View History

2022-08-19 02:02:57 +03:00
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using MapTo;
namespace BlueWest.Data
{
[MapFrom( typeof(Country))]
public partial class CountryUnique
{
// ISO 3166-1 numeric code
2022-08-22 00:14:50 +03:00
public int Id { get; set; }
public int Code { get; set; }
public string Name { get; set; }
2022-08-19 02:02:57 +03:00
public string StateName { get; set; }
[MaxLength(2)] public string Alpha2Code { get; set; }
public string TLD { get; set; }
2022-08-22 02:51:45 +03:00
2022-08-19 02:02:57 +03:00
}
}