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

20 lines
498 B
C#

using System;
namespace Xylem.Common.Hardware.WaterMeter.Genesis.GenesisFile.Consts
{
/// <summary>
/// Concatenation between firmware update state and text
/// </summary>
public struct FwUpdateStateText
{
/// <summary>
/// The state of the firmware update
/// </summary>
public FwUpdateState State;
/// <summary>
/// The message text of the firmware update state
/// </summary>
public String Message;
}
}