50 lines
1.1 KiB
C#
50 lines
1.1 KiB
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text.Json.Serialization;
|
|
using MapTo;
|
|
|
|
namespace BlueWest.Data
|
|
{
|
|
[MapFrom(new []
|
|
{
|
|
typeof(CountryUpdate),
|
|
typeof(CountryCreate),
|
|
typeof(CountryUnique)
|
|
})]
|
|
|
|
public partial class Country
|
|
{
|
|
public int Id { get; set; }
|
|
/// <summary>
|
|
/// ISO 3166-1 numeric code
|
|
/// </summary>
|
|
public int Code { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// ISO 3166-1 State Name
|
|
/// </summary>
|
|
public string StateName { get; set; }
|
|
|
|
[MaxLength(2)] public string Alpha2Code { get; set; }
|
|
public string TLD { get; set; }
|
|
|
|
public List<Currency> Currencies { get; set; }
|
|
public List<User> Users { get; set; }
|
|
|
|
|
|
[JsonConstructor]
|
|
public Country(string stateName, string tld, List<Currency> currencies)
|
|
{
|
|
StateName = stateName;
|
|
TLD = tld;
|
|
Currencies = currencies;
|
|
}
|
|
|
|
public Country() { }
|
|
|
|
}
|
|
}
|
|
|