mirror of
https://github.com/MAGICGrants/btcpayserver-monero-plugin.git
synced 2026-01-09 02:47:53 -05:00
12 lines
346 B
C#
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; }
|
|
}
|
|
}
|