This commit is contained in:
Kukks
2023-10-18 09:56:52 +02:00
parent 8fda803158
commit aa6f9d2848
13 changed files with 124 additions and 41 deletions

View File

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