16 lines
286 B
C#
16 lines
286 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CommonUsage.Protocols.VDA5050.Objects
|
|
{
|
|
public class edgeState : sequenceItem
|
|
{
|
|
public string edgeId;
|
|
|
|
public string edgeDescription;
|
|
|
|
public trajectory trajectory;
|
|
}
|
|
}
|