RobotApp/RobotApp.VDA5050/VDA5050Setting.cs
Đăng Nguyễn 73038de662 update
2025-11-04 10:57:41 +07:00

21 lines
713 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace RobotApp.VDA5050;
public class VDA5050Setting
{
public string HostServer { get; set; } = string.Empty;
public int Port { get; set; } = 1883;
public string UserName { get; set; } = "robotics";
public string Password { get; set; } = "robotics";
public string Manufacturer { get; set; } = "PhenikaaX";
public string Version { get; set; } = "2.1.0";
public int PublishRepeat { get; set; } = 2;
public bool EnablePassword { get; set; } = false;
public bool EnableTls { get; set; } = false;
public string? CAFile { get; set; }
public string? CerFile { get; set; }
public string? KeyFile { get; set; }
}