Initial commit

This commit is contained in:
2026-07-03 16:31:37 +07:00
commit 899c7c637d
1939 changed files with 641750 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; }
}