mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 23:54:26 +01:00
updates
This commit is contained in:
@@ -1,3 +1,23 @@
|
||||
namespace BTCPayServer.Plugins.Prism;
|
||||
|
||||
public record PrismSplit(decimal Percentage, string Destination);
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user