namespace Application.DTOs.MapDTOs { public class NodeMapPositionDTO { public int Id { get; set; } public string Name { get; set; } public double Latitude { get; set; } public double Longitude { get; set; } public NodeType Type { get; set; } public string TypeName { get; set; } public int? RobotsAtNode { get; set; } } }