common/Hardware/WaterMeter/Genesis/Applications/Const/MeterAppStateText.cs
2026-04-23 17:50:07 +02:00

20 lines
502 B
C#

using System;
namespace Xylem.Common.Hardware.WaterMeter.Genesis.Applications.Const
{
/// <summary>
/// Concatenation between meter application state and text
/// </summary>
public struct MeterAppStateText
{
/// <summary>
/// The state of the firmware update
/// </summary>
public MeterAppState State;
/// <summary>
/// The message text of the meter application state
/// </summary>
public String Message;
}
}