RhSolutions-AddIn/RhSolutions.AddIn/Services/ICurrencyClient.cs

10 lines
187 B
C#
Raw Normal View History

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