mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
22 lines
867 B
C#
22 lines
867 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Configuration;
|
|
|
|
namespace BTCPayServer.Models.ServerViewModels
|
|
{
|
|
public class ServicesViewModel
|
|
{
|
|
|
|
public class OtherExternalService
|
|
{
|
|
public string Name { get; set; }
|
|
public string Link { get; set; }
|
|
}
|
|
|
|
public List<ExternalService> ExternalServices { get; set; } = new List<ExternalService>();
|
|
public List<OtherExternalService> OtherExternalServices { get; set; } = new List<OtherExternalService>();
|
|
public List<OtherExternalService> TorHttpServices { get; set; } = new List<OtherExternalService>();
|
|
public List<OtherExternalService> TorOtherServices { get; set; } = new List<OtherExternalService>();
|
|
public List<OtherExternalService> ExternalStorageServices { get; set; } = new List<OtherExternalService>();
|
|
}
|
|
}
|