20 lines
507 B
C#
20 lines
507 B
C#
using System;
|
|
|
|
namespace Xylem.Common.Hardware.WaterMeter.Genesis.GenesisFile.Consts
|
|
{
|
|
/// <summary>
|
|
/// Concatenation between lokup table update state and text
|
|
/// </summary>
|
|
public struct LutUpdateStateText
|
|
{
|
|
/// <summary>
|
|
/// The state of the firmware update
|
|
/// </summary>
|
|
public LutUpdateState State;
|
|
/// <summary>
|
|
/// The message text of the lookup table update state
|
|
/// </summary>
|
|
public String Message;
|
|
}
|
|
}
|