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

17 lines
340 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; }
}
}