Files
btcpayserver-monero-plugin/Plugins/Monero/RPC/Models/TransferRequest.cs
2025-01-10 16:19:27 +09:00

12 lines
309 B
C#

using Newtonsoft.Json;
namespace BTCPayServer.Plugins.Monero.RPC.Models;
public class TransferRequest
{
[JsonProperty("destinations")] public TransferDestination[] Destinations { get; set; }
}
public class TransferResponse
{
[JsonProperty("tx_hash")] public string TransactionHash { get; set; }
}