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

18 lines
326 B
C#

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