21 lines
629 B
C#
21 lines
629 B
C#
using System;
|
|
|
|
namespace Xylem.Common.Hardware.WaterMeter.Genesis.GenesisCore.Consts
|
|
{
|
|
/// <summary>
|
|
/// Update capability check for all necessary settings according to meter.
|
|
/// </summary>
|
|
public static class MetrologyDefinition
|
|
{
|
|
/// <summary>
|
|
/// It is allowed to upgrade the metrology, causing an upgrade capability check to pass always.
|
|
/// </summary>
|
|
public const Byte MetrologyUpgradePermitted = 0xFF;
|
|
/// <summary>
|
|
/// The name of the metrology application.
|
|
/// </summary>
|
|
public const String MetrologyName = "GENESISFLOW";
|
|
|
|
}
|
|
}
|