mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
31 lines
723 B
C#
31 lines
723 B
C#
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 InternalLightningNode { get; internal set; }
|
|
public bool SkipPortTest { get; set; }
|
|
public bool Enabled { get; set; } = true;
|
|
|
|
public string StoreId { get; set; }
|
|
}
|
|
}
|