namespace RobotApp.Common.Shares.Dtos; #nullable disable public record RobotPlcConfigDto { public Guid Id { get; set; } public string PLCAddress { get; set; } public int PLCPort { get; set; } public byte PLCUnitId { 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; } }