Files
MRCC/launcher/PCL-CE/PCL.Core/Link/EasyTier/ETRelay.cs
T

21 lines
405 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace PCL.Core.Link.EasyTier;
// ReSharper disable InconsistentNaming
public class ETRelay
{
public static List<ETRelay> RelayList { get; set; } = [];
public required string Url { get; init; }
public required string Name { get; init; }
public ETRelayType Type { get; init; }
}
public enum ETRelayType
{
Community,
Selfhosted,
Custom
}