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