2018-02-26 00:48:12 +09:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
|
|
|
|
|
|
|
|
namespace BTCPayServer.Models.StoreViewModels
|
|
|
|
|
{
|
|
|
|
|
public class LightningNodeViewModel
|
|
|
|
|
{
|
2018-07-01 15:45:08 +09:00
|
|
|
|
[Display(Name = "Connection string")]
|
|
|
|
|
public string ConnectionString
|
2018-02-26 00:48:12 +09:00
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-21 02:48:11 +09:00
|
|
|
|
public string CryptoCode
|
2018-02-26 00:48:12 +09:00
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
public string StatusMessage { get; set; }
|
2018-02-26 18:58:02 +09:00
|
|
|
|
public string InternalLightningNode { get; internal set; }
|
2018-04-09 16:25:31 +09:00
|
|
|
|
public bool SkipPortTest { get; set; }
|
2018-02-26 00:48:12 +09:00
|
|
|
|
}
|
|
|
|
|
}
|