Files
btcpayserver-monero-plugin/Plugins/Monero/RPC/Models/GetInfoResponse.cs
nicolas.dorier c24ef96fd4 Init commit
2025-01-08 18:27:19 +09:00

14 lines
455 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
namespace BTCPayServer.Plugins.Monero.RPC.Models
{
public partial class GetInfoResponse
{
[JsonProperty("height")] public long Height { get; set; }
[JsonProperty("busy_syncing")] public bool BusySyncing { get; set; }
[JsonProperty("status")] public string Status { get; set; }
[JsonProperty("target_height")] public long? TargetHeight { get; set; }
}
}