This commit is contained in:
Đăng Nguyễn
2025-11-04 10:57:41 +07:00
parent 70e27da4a2
commit 73038de662
12 changed files with 226 additions and 84 deletions

View File

@@ -1,4 +1,6 @@
namespace RobotApp.VDA5050;
using System.ComponentModel.DataAnnotations.Schema;
namespace RobotApp.VDA5050;
public class VDA5050Setting
@@ -12,4 +14,7 @@ public class VDA5050Setting
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; }
}