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