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