mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
* Server Settings: Consolidate Storage and Files * Improve storage options name display * Remove file services from services page * Remove more code
19 lines
651 B
C#
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 ();
|
|
}
|
|
}
|