19 lines
376 B
C#
19 lines
376 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using MapTo;
|
|
|
|
namespace BlueWest.Data
|
|
{
|
|
[MapFrom( typeof(Country))]
|
|
|
|
public partial class CountryUpdate
|
|
{
|
|
public string StateName { get; set; }
|
|
public string Alpha2Code { get; set; }
|
|
public string TLD { get; set; }
|
|
|
|
public CountryUpdate() { }
|
|
}
|
|
}
|
|
|