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