CodeLiturgy.Dashboard/BlueWest.Data/Currency/CurrencyUpdate.cs

17 lines
324 B
C#

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using MapTo;
namespace BlueWest.Data
{
[MapFrom(typeof(Currency))]
public partial class CurrencyUpdate
{
// ISO 4217 Code
[MaxLength(3)] public string Code { get; set; }
public CurrencyUpdate() { }
}
}