mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-06-03 15:34:04 +02:00
8 lines
225 B
C#
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;
|
|
}
|