mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 07:34:24 +01:00
9 lines
201 B
C#
9 lines
201 B
C#
namespace BTCPayServer.Plugins.FixedFloat
|
|
{
|
|
public class FixedFloatSettings
|
|
{
|
|
public bool Enabled { get; set; }
|
|
public decimal AmountMarkupPercentage { get; set; } = 0;
|
|
}
|
|
}
|