CodeLiturgy.Dashboard/BlueWest.Data/Country/CountryUpdate.cs

19 lines
376 B
C#
Raw Normal View History

2022-08-17 23:21:00 +03:00
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using MapTo;
2022-08-17 23:17:37 +03:00
2022-08-17 23:21:00 +03:00
namespace BlueWest.Data
2022-08-17 23:17:37 +03:00
{
2022-08-17 23:21:00 +03:00
[MapFrom( typeof(Country))]
public partial class CountryUpdate
{
public string StateName { get; set; }
public string Alpha2Code { get; set; }
public string TLD { get; set; }
2022-08-18 22:59:13 +03:00
public CountryUpdate() { }
2022-08-17 23:21:00 +03:00
}
}