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