mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
* Implement store templates * Use the template for the default rate rules * Polish messages * Do not show exchange selection if template has a script
9 lines
214 B
C#
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);
|