CostCalculationItem/IRaCIS.Core.Application.Con.../Financial/DTO/ExchangeRateViewModel.cs

14 lines
287 B
C#

using System;
namespace IRaCIS.Application.ViewModels
{
public class ExchangeRateCommand
{
public Guid? Id { get; set; }
public string YearMonth { get; set; }
public decimal Rate { get; set; }
public DateTime UpdateTime { get; set; }
}
}