mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 14:04:26 +01:00
22 lines
600 B
C#
22 lines
600 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
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 List<ExternalService>();
|
|
public List<OtherExternalService> OtherExternalServices { get; set; } = new List<OtherExternalService>();
|
|
}
|
|
}
|