16 lines
337 B
C#
16 lines
337 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
[Table("ExchangeRate")]
|
|
public class ExchangeRate : BaseFullAuditEntity
|
|
{
|
|
public string YearMonth { get; set; }
|
|
|
|
[Column(TypeName = "decimal(18,2)")]
|
|
public decimal Rate { get; set; }
|
|
|
|
}
|
|
}
|