mirror of
https://github.com/S7NetPlus/s7netplus.git
synced 2026-02-17 22:38:27 +08:00
14 lines
329 B
C#
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; }
|
|
}
|
|
}
|