btcpayserver/BTCPayServer/Models/StoreViewModels/StoreLightningNode.cs
2024-04-04 16:31:04 +09:00

12 lines
322 B
C#

using BTCPayServer.Payments;
namespace BTCPayServer.Models.StoreViewModels
{
public class StoreLightningNode
{
public string CryptoCode { get; set; }
public PaymentMethodId PaymentMethodId { get; set; }
public string Address { get; set; }
public bool Enabled { get; set; }
}
}