mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 02:22:22 +01:00
12 lines
295 B
C#
12 lines
295 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Rating;
|
|
|
|
namespace BTCPayServer.Services.Rates
|
|
{
|
|
public interface IRateProvider
|
|
{
|
|
RateSourceInfo RateSourceInfo { get; }
|
|
Task<PairRate[]> GetRatesAsync(CancellationToken cancellationToken);
|
|
}
|
|
}
|