Files
laatzen/Common/Hardware/WaterMeter/Genesis/GenesisFile/Consts/MeterResetPsuStateText.cs
T
Thomas Wiedebusch 58e82c24a1 Cordonel ReBoot with "Pseudo FW Update" PSU:
- Taking the installed FLEXNETVERSION, rebuilding it, download and reinstall it, send trigger upgrade to finalize.
2022-08-11 12:02:52 +02:00

20 lines
515 B
C#

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