btcpayserver/BTCPayServer.Rating/Providers/IRateProvider.cs
2019-05-24 18:42:22 +09:00

14 lines
321 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using BTCPayServer.Rating;
namespace BTCPayServer.Services.Rates
{
public interface IRateProvider
{
Task<ExchangeRates> GetRatesAsync(CancellationToken cancellationToken);
}
}