btcpayserver/BTCPayServer/Models/StoreViewModels/LightningViewModel.cs

9 lines
211 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace BTCPayServer.Models.StoreViewModels;
public class LightningViewModel : LightningNodeViewModel
{
public List<AdditionalServiceViewModel> Services { get; set; }
}