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

12 lines
346 B
C#

using Newtonsoft.Json;
namespace BTCPayServer.Plugins.Monero.RPC.Models
{
public class GetTransferByTransactionIdRequest
{
[JsonProperty("txid")] public string TransactionId { get; set; }
[JsonProperty("account_index", DefaultValueHandling = DefaultValueHandling.Ignore)] public long? AccountIndex { get; set; }
}
}