mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 07:34:24 +01:00
15 lines
298 B
C#
15 lines
298 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace WalletWasabi.Affiliation.Models;
|
|
|
|
public class GetCoinjoinRequestResponse
|
|
{
|
|
[JsonProperty(PropertyName = "coinjoin_request")]
|
|
public byte[] CoinjoinRequest;
|
|
|
|
public GetCoinjoinRequestResponse(byte[] coinjoinRequest)
|
|
{
|
|
CoinjoinRequest = coinjoinRequest;
|
|
}
|
|
}
|