24 lines
660 B
C#
24 lines
660 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Xylem.Common.Hardware.Interfaces.Protocols.ProtocolCore.EventArguments;
|
|
|
|
namespace Xylem.Common.Hardware.WaterMeter.MagFlux.DataPackages.EventArguments
|
|
{
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// EventArgs for Request Responses
|
|
/// </summary>
|
|
public class RequestResponseDataEventArgs : BaseDataEventArgs
|
|
{
|
|
/// <summary>
|
|
/// Request response from meter
|
|
/// </summary>
|
|
public List<Byte> RequestResponseData;
|
|
|
|
/// <inheritdoc />
|
|
public override Object GetEventData()
|
|
{
|
|
return RequestResponseData;
|
|
}
|
|
}
|
|
} |