btcpayserver/BTCPayServer/Models/ServerViewModels/ServicesViewModel.cs
2019-03-18 16:45:46 +09:00

24 lines
846 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using BTCPayServer.Configuration;
using BTCPayServer.Services;
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>();
}
}