mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 07:34:24 +01:00
14 lines
441 B
C#
14 lines
441 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BTCPayServer.Plugins.Prism;
|
|
|
|
public class PrismSettings
|
|
{
|
|
public bool Enabled { get; set; }
|
|
|
|
public Dictionary<string, long> DestinationBalance { get; set; } = new();
|
|
public Split[] Splits { get; set; }
|
|
public Dictionary<string, PendingPayout> PendingPayouts { get; set; } = new();
|
|
public long SatThreshold { get; set; } = 100;
|
|
public ulong Version { get; set; } = 0;
|
|
} |