11 lines
293 B
C#
11 lines
293 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Plugins.Monero.RPC.Models
|
|
{
|
|
public class GetTransferByTransactionIdRequest
|
|
{
|
|
[JsonProperty("txid")] public string TransactionId { get; set; }
|
|
|
|
[JsonProperty("account_index")] public long AccountIndex { get; set; }
|
|
}
|
|
}
|