RhSolutions-AddIn/RhSolutions.AddIn/Services/ICurrencyClient.cs
2023-05-15 06:33:24 +03:00

10 lines
187 B
C#

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