namespace OTSSignsOrchestrator.Core.Models.DTOs; /// /// Represents a node in the Docker Swarm cluster, /// parsed from docker node ls output. /// public class NodeInfo { public string Id { get; set; } = string.Empty; public string Hostname { get; set; } = string.Empty; public string Status { get; set; } = string.Empty; public string Availability { get; set; } = string.Empty; public string ManagerStatus { get; set; } = string.Empty; public string EngineVersion { get; set; } = string.Empty; public string IpAddress { get; set; } = string.Empty; }