tbf/TestBenchFramework/BenchControl/TestMethods/iPerlCommunication/CommCompletedEventArgs.cs

23 lines
530 B
C#
Raw Normal View History

///
/// 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;
}
}
}