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

14 lines
465 B
C#
Raw Normal View History

2019-09-30 10:32:43 +02:00
using System.Collections.Generic;
using Newtonsoft.Json;
namespace BTCPayServer.Services.Altcoins.Monero.RPC.Models
2019-09-30 10:32:43 +02:00
{
public partial class GetInfoResponse
2019-09-30 10:32:43 +02:00
{
[JsonProperty("height")] public long Height { get; set; }
[JsonProperty("busy_syncing")] public bool BusySyncing { get; set; }
2019-09-30 10:32:43 +02:00
[JsonProperty("status")] public string Status { get; set; }
[JsonProperty("target_height")] public long? TargetHeight { get; set; }
}
}