mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 01:43:50 +01:00
9 lines
213 B
C#
9 lines
213 B
C#
#nullable enable
|
|
namespace BTCPayServer.Rating;
|
|
public enum RateSource
|
|
{
|
|
Coingecko,
|
|
Direct
|
|
}
|
|
public record RateSourceInfo(string Id, string DisplayName, string Url, RateSource Source = RateSource.Direct);
|