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

16 lines
254 B
C#
Raw Normal View History

2022-08-17 23:21:00 +03:00
using System.Collections.Generic;
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
public string Code { get; set; }
}
}