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

9 lines
No EOL
197 B
C#

using Newtonsoft.Json;
namespace BTCPayServer.Plugins.Monero.RPC.Models
{
public partial class GetHeightResponse
{
[JsonProperty("height")] public long Height { get; set; }
}
}