Files
BTCPayServerPlugins/Plugins/BTCPayServer.Plugins.MicroNode/MicroNodeSettings.cs
2024-01-17 09:07:18 +01:00

11 lines
290 B
C#

namespace BTCPayServer.Plugins.MicroNode;
public class MicroNodeSettings
{
public bool Enabled { get; set; }
public string Name { get; set; }
public bool AdminOnly { get; set; }
// public decimal FeeReserve { get; set; }
// public decimal ServiceFee { get; set; }
}