This commit is contained in:
Kukks
2023-07-04 14:16:06 +02:00
parent c65dc2fbfd
commit 241e319e46
16 changed files with 675 additions and 464 deletions

View File

@@ -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;
}
}