mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 07:34:24 +01:00
23 lines
522 B
C#
23 lines
522 B
C#
namespace BTCPayServer.Plugins.Prism;
|
|
|
|
public class PrismSplit
|
|
{
|
|
public PrismSplit()
|
|
{
|
|
|
|
}
|
|
public PrismSplit(decimal Percentage, string Destination)
|
|
{
|
|
this.Percentage = Percentage;
|
|
this.Destination = Destination;
|
|
}
|
|
|
|
public decimal Percentage { get; set; }
|
|
public string Destination { get; set; }
|
|
|
|
public void Deconstruct(out decimal Percentage, out string Destination)
|
|
{
|
|
Percentage = this.Percentage;
|
|
Destination = this.Destination;
|
|
}
|
|
} |