12 lines
287 B
C#
12 lines
287 B
C#
namespace IRaCIS.Application.Contracts
|
|
{
|
|
public class ExchangeRateCommand
|
|
{
|
|
public Guid? Id { get; set; }
|
|
public string YearMonth { get; set; } = String.Empty;
|
|
public decimal Rate { get; set; }
|
|
|
|
public DateTime UpdateTime { get; set; }
|
|
}
|
|
}
|