btcpayserver/BTCPayServer/Models/StoreViewModels/LightningNodeViewModel.cs
2018-04-09 16:25:31 +09:00

28 lines
671 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 = "Lightning charge url")]
public string Url
{
get;
set;
}
public string CryptoCode
{
get;
set;
}
public string StatusMessage { get; set; }
public string InternalLightningNode { get; internal set; }
public bool SkipPortTest { get; set; }
}
}