btcpayserver/BTCPayServer/Services/Rates/IRateProvider.cs

14 lines
262 B
C#
Raw Normal View History

2017-09-13 15:47:34 +09:00
using System;
using System.Collections.Generic;
using System.Text;
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
{
2018-05-03 03:32:42 +09:00
Task<ExchangeRates> GetRatesAsync();
}
2017-09-13 15:47:34 +09:00
}