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

9 lines
201 B
C#

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