using SKMC.Api.Common.Types;
namespace SKMC.Api.Motion.Model
{
///
/// PDO数据模型
///
public class MotionPdo : MotionSdo
{
///
/// 组号
///
public string Group { get; set; }
///
/// 读写标识 0:读, 1:写
///
public short RW { get; set; }
private TimestampSet timestampSet;
///
/// 时间戳数据集
///
public TimestampSet TimestampSet
{
get { return timestampSet; }
set { timestampSet = value; }
}
}
}