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