2022-06-14 07:36:22 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using BTCPayServer.Data;
|
|
|
|
using BTCPayServer.Lightning;
|
|
|
|
using BTCPayServer.Models;
|
|
|
|
using BTCPayServer.Models.StoreViewModels;
|
|
|
|
|
|
|
|
namespace BTCPayServer.Components.StoreLightningServices;
|
|
|
|
|
|
|
|
public class StoreLightningServicesViewModel
|
|
|
|
{
|
2024-11-07 00:58:47 +01:00
|
|
|
public string StoreId { get; set; }
|
2022-06-14 07:36:22 +02:00
|
|
|
public string CryptoCode { get; set; }
|
2024-11-07 00:58:47 +01:00
|
|
|
public LightningNodeType? LightningNodeType { get; set; }
|
2022-06-14 07:36:22 +02:00
|
|
|
public List<AdditionalServiceViewModel> Services { get; set; }
|
|
|
|
}
|