mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
10 lines
231 B
C#
10 lines
231 B
C#
|
namespace BTCPayServer.Models.StoreViewModels
|
||
|
{
|
||
|
public class StoreLightningNode
|
||
|
{
|
||
|
public string CryptoCode { get; set; }
|
||
|
public string Address { get; set; }
|
||
|
public bool Enabled { get; set; }
|
||
|
}
|
||
|
}
|