mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-11 17:57:49 +01:00
12 lines
322 B
C#
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; }
|
|
}
|
|
}
|