Files
I150/srcs/RobotNet10/Shared/RobotNet.VDA5050/BrokerSetting.cs
2026-07-03 16:37:12 +07:00

17 lines
591 B
C#

namespace RobotNet.VDA5050;
public record BrokerSetting
{
public string HostServer { get; set; } = string.Empty;
public int Port { get; set; } = 1883;
public string UserName { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public int PublishRepeat { get; set; }
public bool EnablePassword { get; set; }
public bool EnableTls { get; set; }
public bool EnableSSLSecure { get; set; }
public string? CAFile { get; set; }
public string? CerFile { get; set; }
public string? KeyFile { get; set; }
}