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
{
///
public class BendDetectDataEventArgs : BaseDataEventArgs
{
///
/// new record from Stream
///
public BendDetectionRecord NewData;
///
public override Object GetEventData()
{
return NewData;
}
}
}