btcpayserver/BTCPayServer/Models/ServerViewModels/ServicesViewModel.cs
d11n c56821300a
Server Settings: Consolidate Storage and Files (#3863)
* Server Settings: Consolidate Storage and Files

* Improve storage options name display

* Remove file services from services page

* Remove more code
2022-06-15 21:06:16 +09:00

19 lines
651 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 ();
public List<OtherExternalService> OtherExternalServices { get; set; } = new ();
public List<OtherExternalService> TorHttpServices { get; set; } = new ();
public List<OtherExternalService> TorOtherServices { get; set; } = new ();
}
}