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

31 lines
908 B
C#

using System.ComponentModel.DataAnnotations;
namespace RobotApp.VDA5050.Factsheet;
#nullable disable
public class FactSheetMsg
{
public uint HeaderId { get; set; }
public string Timestamp { get; set; }
[Required]
public string Version { get; set; }
[Required]
public string Manufacturer { get; set; }
[Required]
public string SerialNumber { get; set; }
[Required]
public TypeSpecification TypeSpecification { get; set; }
[Required]
public PhysicalParameters PhysicalParameters { get; set; }
[Required]
public ProtocolLimits ProtocolLimits { get; set; }
[Required]
public ProtocolFeatures ProtocolFeatures { get; set; }
[Required]
public AgvGeometry AgvGeometry { get; set; }
[Required]
public LoadSpecification LoadSpecification { get; set; }
//public LocalizationParameter LocalizationParameters { get; set; }
}