btcpayserver/BTCPayServer/Plugins/Altcoins/Monero/RPC/Models/GetHeightResponse.cs

10 lines
208 B
C#
Raw Normal View History

2019-09-30 10:32:43 +02:00
using Newtonsoft.Json;
namespace BTCPayServer.Services.Altcoins.Monero.RPC.Models
2019-09-30 10:32:43 +02:00
{
public partial class GetHeightResponse
{
[JsonProperty("height")] public long Height { get; set; }
}
2019-09-30 20:42:31 +09:00
}