RhSolutions-AddIn/RhSolutions.AddIn/Services/ICurrencyClient.cs
2023-06-09 14:49:20 +03:00

10 lines
185 B
C#

using Newtonsoft.Json;
using System.Threading.Tasks;
namespace RhSolutions.Services;
public interface ICurrencyClient
{
public Task<decimal?> GetExchangeRate(DateTime date);
}