RobotNet/RobotNet.RobotShares/Dtos/TrafficMapDto.cs
2025-10-15 15:15:53 +07:00

14 lines
289 B
C#

namespace RobotNet.RobotShares.Dtos;
public class TrafficMapDto
{
public Guid MapId { get; set; }
public string MapName { get; set; } = "";
public List<TrafficAgentDto> Agents { get; set; } = [];
public override string ToString()
{
return MapName;
}
}