using System;
using System.Collections.Generic;
using System.Text;
namespace CommonUsage.Protocols.VDA5050.Objects
{
public class nodeState : sequenceItem
{
///
/// Unique node identification.
///
public string nodeId;
///
/// Additional information on the node.
///
public string nodeDescription;
///
/// Node position.
/// The object is defined in 6.6 Topic: "order" (from master control to AGV)
/// Optional: Master control has this information. Can be sent additionally, e.g., for debugging purposes.
///
public nodePosition nodePosition;
}
}