21 lines
367 B
C#
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;
|
|
}
|
|
}
|
|
}
|