Files
btcpayserver/BTCPayServer.Common/Altcoins/Monero/RPC/Models/GetHeightResponse.cs
2019-10-02 22:41:53 -05:00

10 lines
208 B
C#

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