2019-09-30 10:32:43 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
2019-10-02 22:41:53 -05:00
|
|
|
namespace BTCPayServer.Services.Altcoins.Monero.RPC.Models
|
2019-09-30 10:32:43 +02:00
|
|
|
{
|
2024-04-04 09:38:41 +01:00
|
|
|
public partial class GetInfoResponse
|
2019-09-30 10:32:43 +02:00
|
|
|
{
|
|
|
|
[JsonProperty("height")] public long Height { get; set; }
|
2024-04-04 09:38:41 +01:00
|
|
|
[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; }
|
|
|
|
}
|
|
|
|
}
|