17 lines
591 B
C#
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; }
|
|
}
|