summaryrefslogtreecommitdiff
path: root/Services/ICurrencyClient.cs
blob: e45a25a520bc909a36adfd960f9d4831817c8a05 (plain)
1
2
3
4
5
6
namespace ExcelAddIn.Services;

public interface ICurrencyClient
{
	public Task<decimal?> GetExchangeRate(DateTime date);
}