namespace RobotApp.Common.Shares.Dtos; #nullable disable public record RobotVDA5050ConfigDto { public Guid Id { get; set; } public string SerialNumber { get; set; } public string VDA5050HostServer { get; set; } public int VDA5050Port { get; set; } = 1883; public string VDA5050UserName { get; set; } public string VDA5050Password { get; set; } public string VDA5050Manufacturer { get; set; } public string VDA5050Version { get; set; } public int VDA5050PublishRepeat { get; set; } public bool VDA5050EnablePassword { get; set; } public bool VDA5050EnableTls { get; set; } public DateTime CreatedAt { get; set; } public DateTime UpdatedAt { get; set; } public bool IsActive { get; set; } = true; public string ConfigName { get; set; } public string Description { get; set; } }