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