Initial commit
This commit is contained in:
16
srcs/RobotNet10/Shared/RobotNet.VDA5050/BrokerSetting.cs
Normal file
16
srcs/RobotNet10/Shared/RobotNet.VDA5050/BrokerSetting.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user