Files
btcpayserver/BTCPayServer.Rating/RateSourceInfo.cs
Nicolas Dorier 1e79730c6e Implement store templates (#6704)
* Implement store templates

* Use the template for the default rate rules

* Polish messages

* Do not show exchange selection if template has a script
2025-05-09 15:58:24 +09:00

9 lines
214 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);