CostCalculationItem/IRaCIS.Core.Application/ViewModels/Pay/ExchangeRateViewModel.cs

12 lines
231 B
C#

using System;
namespace IRaCIS.Application.ViewModels
{
public class ExchangeRateDTO
{
public Guid Id { get; set; }
public string YearMonth { get; set; }
public double Rate { get; set; }
}
}