Files
BTCPayServerPlugins/Plugins/BTCPayServer.Plugins.SideShift/SideShiftSettings.cs
2023-01-16 13:13:18 +01:00

9 lines
199 B
C#

namespace BTCPayServer.Plugins.SideShift
{
public class SideShiftSettings
{
public bool Enabled { get; set; }
public decimal AmountMarkupPercentage { get; set; } = 0;
}
}