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

20 lines
604 B
C#

namespace RobotApp.VDA5050.FactsheetExtend;
#nullable disable
public class FactsheetExtendMsg
{
public uint HeaderId { get; set; }
public DateTime Timestamp { get; set; }
public string Version { get; set; }
public string Manufacturer { get; set; }
public string SerialNumber { get; set; }
public ServerParam Server_param { get; set; }
public RobotParam Robot_param { get; set; }
public Localization Localization { get; set; }
public Navigation Navigation { get; set; }
public Safety Safety { get; set; }
public ChargerParam Charger_param { get; set; }
}