irc-netcore-api/IRaCIS.Core.Domain/Financial/ExchangeRate.cs

13 lines
275 B
C#

namespace IRaCIS.Core.Domain.Models
{
[Table("ExchangeRate")]
public class ExchangeRate : BaseFullAuditEntity
{
public string YearMonth { get; set; } = string.Empty;
[DecimalPrecision(18, 2)]
public decimal Rate { get; set; }
}
}