2015-08-11 06:50:32 +00:00
|
|
|
|
///
|
|
|
|
|
|
/// Copyright (c) 2015 Sensus Metering Systems
|
|
|
|
|
|
/// Author: Milan Hanajík
|
|
|
|
|
|
///
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
2021-10-26 09:23:57 +00:00
|
|
|
|
namespace TBF.Rig.TestMethods.iPerlCommunication
|
2015-08-11 06:50:32 +00:00
|
|
|
|
{
|
|
|
|
|
|
public class AllCompletedEventArgs : EventArgs
|
|
|
|
|
|
{
|
|
|
|
|
|
public string CommMessage;
|
|
|
|
|
|
|
|
|
|
|
|
public AllCompletedEventArgs(string commMessage)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.CommMessage = commMessage;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|