2018-07-22 18:38:14 +09:00
|
|
|
using System.Collections.Generic;
|
2019-03-01 13:20:21 +09:00
|
|
|
using BTCPayServer.Configuration;
|
2018-07-22 18:38:14 +09:00
|
|
|
|
|
|
|
namespace BTCPayServer.Models.ServerViewModels
|
|
|
|
{
|
|
|
|
public class ServicesViewModel
|
|
|
|
{
|
2018-11-07 14:29:35 +01:00
|
|
|
|
2019-03-01 13:20:21 +09:00
|
|
|
public class OtherExternalService
|
2018-12-07 18:42:39 +09:00
|
|
|
{
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Link { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<ExternalService> ExternalServices { get; set; } = new List<ExternalService>();
|
2019-03-01 13:20:21 +09:00
|
|
|
public List<OtherExternalService> OtherExternalServices { get; set; } = new List<OtherExternalService>();
|
2019-03-18 16:45:46 +09:00
|
|
|
public List<OtherExternalService> TorHttpServices { get; set; } = new List<OtherExternalService>();
|
|
|
|
public List<OtherExternalService> TorOtherServices { get; set; } = new List<OtherExternalService>();
|
2019-04-22 09:41:20 +02:00
|
|
|
public List<OtherExternalService> ExternalStorageServices { get; set; } = new List<OtherExternalService>();
|
2018-07-22 18:38:14 +09:00
|
|
|
}
|
|
|
|
}
|