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

14 lines
383 B
C#

namespace RobotApp.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; } = [];
}