tbf/TBF/Rig/TestMethods/GenHead/OptoReceivedEventArgs.cs
2021-10-26 19:38:09 +02:00

21 lines
367 B
C#

///
/// Copyright (c) 2015-2017 Sensus Metering Systems
///
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TBF.Rig.TestMethods.GenesisCommunication.GenesisHead
{
public class OptoReceivedEventArgs : EventArgs
{
public string Data;
public OptoReceivedEventArgs(string data)
{
this.Data = data;
}
}
}