mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 14:04:26 +01:00
18 lines
454 B
C#
18 lines
454 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Models.ServerViewModels
|
|
{
|
|
public class ServicesViewModel
|
|
{
|
|
public class LNDServiceViewModel
|
|
{
|
|
public string Crypto { get; set; }
|
|
public string Type { get; set; }
|
|
}
|
|
public List<LNDServiceViewModel> LNDServices { get; set; } = new List<LNDServiceViewModel>();
|
|
}
|
|
}
|