btcpayserver/BTCPayServer.Rating/RateSourceInfo.cs

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);