12 lines
364 B
C#
12 lines
364 B
C#
namespace RobotApp.VDA5050.InstantAction;
|
|
|
|
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; } = [];
|
|
}
|