mirror of
https://github.com/MAGICGrants/btcpayserver-monero-plugin.git
synced 2026-01-09 02:47:53 -05:00
14 lines
455 B
C#
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; }
|
|
}
|
|
}
|