20 lines
502 B
C#
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;
|
|
}
|
|
}
|