tbf/Statistics/UserControls/Enums.cs
2018-12-12 11:29:06 +01:00

19 lines
320 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Statistics.UserControls
{
public enum MidId
{
/// When converted to 'int' it's the MID number, 0 = water meters
WaterMeters,
I1,
I2,
I3,
I4,
Count
}
}