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

20 lines
353 B
C#
Raw Normal View History

2022-08-17 23:21:00 +03:00
using System.Collections.Generic;
2022-08-18 18:46:20 +03:00
using System.ComponentModel.DataAnnotations;
2022-08-17 23:21:00 +03:00
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(Currency))]
public partial class CurrencyUpdate
{
// ISO 4217 Code
2022-08-18 22:59:13 +03:00
[MaxLength(3)] public string Code { get; set; }
public CurrencyUpdate()
{
}
2022-08-17 23:21:00 +03:00
}
}