1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2025-06-03 15:34:04 +02:00
Minecraft-Phantom-Panel/Utils/Phantom.Utils.Rpc/RpcConfiguration.cs

8 lines
225 B
C#

using NetMQ;
namespace Phantom.Utils.Rpc;
public sealed record RpcConfiguration(string LoggerName, string Host, ushort Port, NetMQCertificate ServerCertificate) {
public string TcpUrl => "tcp://" + Host + ":" + Port;
}