22 lines
614 B
C#
22 lines
614 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 CalibDataEventArgs : BaseDataEventArgs
|
|
{
|
|
/// <summary>
|
|
/// Stream record for calibration on channel
|
|
/// </summary>
|
|
public CalibrationRecord CalibChl;
|
|
|
|
/// <inheritdoc />
|
|
public override Object GetEventData()
|
|
{
|
|
return CalibChl;
|
|
}
|
|
}
|
|
} |