RobotApp/RobotApp.VDA5050/Visualization/Visualizationmsg.cs
Đăng Nguyễn cf309cccba Init project
2025-09-10 10:48:39 +07:00

17 lines
505 B
C#

namespace RobotApp.VDA5050.Visualization;
#nullable disable
public class VisualizationMsg
{
public uint HeaderId { get; set; }
public string Timestamp { get; set; }
public string Version { get; set; }
public string Manufacturer { get; set; }
public string SerialNumber { get; set; }
public string MapId { get; set; }
public string MapDescription { get; set; }
public AgvPosition AgvPosition { get; set; } = new();
public Velocity Velocity { get; set; } = new();
}