server-master/srcs/PhoenixLib.Messaging/Internal/MQTT/MqttConfiguration.cs
2026-02-10 18:21:30 +01:00

16 lines
No EOL
405 B
C#

namespace PhoenixLib.ServiceBus.MQTT
{
public class MqttConfiguration
{
public MqttConfiguration(string address, string clientName, int? port = null)
{
Address = address;
ClientName = clientName;
Port = port;
}
public string Address { get; }
public int? Port { get; }
public string ClientName { get; }
}
}