RobotNet/RobotNet.RobotShares/VDA5050/InstantAction/InstantActionsMsg.cs
2025-10-15 15:15:53 +07:00

14 lines
395 B
C#

namespace RobotNet.RobotShares.VDA5050.InstantAction;
#nullable disable
public class InstantActionsMsg
{
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 Action[] Actions { get; set; } = [];
}