Initial commit

This commit is contained in:
2026-07-13 09:25:40 +07:00
parent c08ff54676
commit bccfb156d7
1938 changed files with 641646 additions and 0 deletions

View 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; }
}