tbf/TBF/Rig/TestMethods/iPerlCommunication/AllCompletedEventArgs.cs

19 lines
373 B
C#
Raw Normal View History

///
/// 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
{
public class AllCompletedEventArgs : EventArgs
{
public string CommMessage;
public AllCompletedEventArgs(string commMessage)
{
this.CommMessage = commMessage;
}
}
}