23 lines
530 B
C#
23 lines
530 B
C#
///
|
|
/// Copyright (c) 2015 Sensus Metering Systems
|
|
/// Author: Milan Hanajík
|
|
///
|
|
using System;
|
|
|
|
namespace TBF.BenchControl.TestMethods.iPerlCommunication
|
|
{
|
|
public class CommCompletedEventArgs : EventArgs
|
|
{
|
|
public int ThreadId;
|
|
public int WMNr;
|
|
public string CommMessage;
|
|
|
|
public CommCompletedEventArgs(int threadId, int wmNr, string commMessage)
|
|
{
|
|
this.ThreadId = threadId;
|
|
this.WMNr = wmNr;
|
|
this.CommMessage = commMessage;
|
|
}
|
|
}
|
|
}
|