24 lines
597 B
C#
24 lines
597 B
C#
///
|
|
/// Copyright (c) 2021 Sensus Slovensko a.s.
|
|
///
|
|
using TBF.BenchControl.TestMethods.iPerlCommunication.iPerlHead;
|
|
|
|
namespace TBF.BenchControl.TestMethods.iPerlCommunication
|
|
{
|
|
public class iPerlDataWrite
|
|
{
|
|
public MessageID MessageID;
|
|
public int Offset;
|
|
public byte[] Data;
|
|
public string Description;
|
|
|
|
public iPerlDataWrite(MessageID mesageID, int offset, byte[] data, string description)
|
|
{
|
|
MessageID = mesageID;
|
|
Offset = offset;
|
|
Data = data;
|
|
Description = description;
|
|
}
|
|
}
|
|
}
|