22 lines
601 B
C#
22 lines
601 B
C#
using System;
|
|
using Xylem.Common.Hardware.Interfaces.Protocols.ProtocolCore.EventArguments;
|
|
using Xylem.Common.Hardware.WaterMeter.Genesis.DataPackages.MeasurementRecords;
|
|
|
|
|
|
namespace Xylem.Common.Hardware.WaterMeter.Genesis.DataPackages.EventArguments
|
|
{
|
|
/// <inheritdoc />
|
|
public class BendDetectDataEventArgs : BaseDataEventArgs
|
|
{
|
|
/// <summary>
|
|
/// new record from Stream
|
|
/// </summary>
|
|
public BendDetectionRecord NewData;
|
|
|
|
/// <inheritdoc />
|
|
public override Object GetEventData()
|
|
{
|
|
return NewData;
|
|
}
|
|
}
|
|
} |