mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-19 06:54:19 +01:00
13 lines
322 B
C#
13 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; }
|
|
}
|
|
}
|