btcpay-plugin/Plugins/Monero/RPC/Models/CreateAddressResponse.cs

10 lines
No EOL
284 B
C#

using Newtonsoft.Json;
namespace BTCPayServer.Plugins.Monero.RPC.Models
{
public partial class CreateAddressResponse
{
[JsonProperty("address")] public string Address { get; set; }
[JsonProperty("address_index")] public long AddressIndex { get; set; }
}
}