11 lines
No EOL
345 B
C#
11 lines
No EOL
345 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; }
|
|
}
|
|
} |