common/Hardware/WaterMeter/Genesis/GenesisFile/Consts/LutUpdateStateText.cs
2026-04-23 17:50:07 +02:00

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;
}
}