btcpayserver/BTCPayServer.Rating/Providers/IRateProvider.cs

13 lines
295 B
C#
Raw Normal View History

using System.Threading;
2017-09-13 15:47:34 +09:00
using System.Threading.Tasks;
2018-05-03 03:32:42 +09:00
using BTCPayServer.Rating;
2017-09-13 15:47:34 +09:00
namespace BTCPayServer.Services.Rates
2017-09-13 15:47:34 +09:00
{
public interface IRateProvider
{
RateSourceInfo RateSourceInfo { get; }
Task<PairRate[]> GetRatesAsync(CancellationToken cancellationToken);
}
2017-09-13 15:47:34 +09:00
}