namespace SHJX.Service.Model.Control
{
public class PortArgs
{
///
/// 写入方式
///
public WriteWay WriteWay { get; set; }
///
/// 读取方式
///
public string ReadWay { get; set; }
public string TypeName { get; set; }
public byte NodeId { get; set; }
public long Distance { get; set; }
public object Reserve { get; set; }
public string ManualOrAuto { get; set; }
public PortArgs()
{
NodeId = 0;
Distance = 0;
}
}
}