btcpayserver/BTCPayServer/Payments/Lightning/CLightning/GetInfoResponse.cs

18 lines
459 B
C#
Raw Normal View History

2017-12-13 15:49:19 +09:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Payments.Lightning.CLightning
2017-12-13 15:49:19 +09:00
{
public class GetInfoResponse
{
public string Id { get; set; }
2017-12-13 15:49:19 +09:00
public int Port { get; set; }
public string[] Address { get; set; }
public string Version { get; set; }
2017-12-13 15:49:19 +09:00
public int BlockHeight { get; set; }
public string Network { get; set; }
2017-12-13 15:49:19 +09:00
}
}