btcpayserver/BTCPayServer/Models/StoreViewModels/LightningNodeViewModel.cs

32 lines
776 B
C#
Raw Normal View History

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
{
[Display(Name = "Connection string")]
public string ConnectionString
{
get;
set;
}
public string CryptoCode
{
get;
set;
}
public string StatusMessage { get; set; }
public string InternalLightningNode { get; internal set; }
2018-04-09 16:25:31 +09:00
public bool SkipPortTest { get; set; }
2018-07-27 13:37:16 +02:00
public bool Enabled { get; set; } = true;
2019-01-07 09:52:27 +01:00
public string StoreId { get; set; }
}
}