Files
BTCPayServerPlugins/Plugins/BTCPayServer.Plugins.SideShift/SideShiftSettings.cs
2023-07-13 09:14:17 +02:00

15 lines
407 B
C#

namespace BTCPayServer.Plugins.SideShift
{
public class SideShiftSettings
{
public bool Enabled { get; set; }
public decimal AmountMarkupPercentage { get; set; } = 0;
public string? PreferredTargetPaymentMethodId { get; set; }
public string[] ExplicitMethods { get; set; }
public bool OnlyShowExplicitMethods { get; set; } = false;
}
}