15 lines
272 B
C#
15 lines
272 B
C#
///
|
|
/// Copyright (c) 2019 Sensus Slovensko a.s.
|
|
///
|
|
using System;
|
|
|
|
namespace Results.Forms
|
|
{
|
|
public class WaterMeterEventArgs : EventArgs
|
|
{
|
|
public int WMPosition;
|
|
|
|
public WaterMeterEventArgs(int wmPosition) { WMPosition = wmPosition; }
|
|
}
|
|
}
|