Files
s7netplus/S7.Net.Common/Types/DataItem.cs
Michele Cattafesta 63bd361e76 cleanup and documentation.
Signed-off-by: Michele Cattafesta <michele.cattafesta@mesta-automation.com>
2016-05-02 00:31:17 +02:00

14 lines
329 B
C#

namespace S7.Net.Types
{
public class DataItem
{
public DataType DataType { get; set; }
public VarType VarType { get; set; }
public int DB { get; set; }
public int StartByteAdr { get; set; }
public int Count { get; set; } = 1;
public object Value { get; set; }
}
}