RegionRadio split to Region (string) and RadioFrequencyMhz (Int32?), CoreRevision changed from string to Int32?, Service\MeterProcessState\Controllers\GetCorondelFw changed to GetCordonelFw and corrected
38 lines
881 B
C#
38 lines
881 B
C#
using System;
|
|
|
|
namespace Xylem.ServiceFwUpdate.Common.FwUpdateSafe
|
|
{
|
|
/// <summary>
|
|
/// Cordonel device information with Pcb ID, password container, required version, setup file
|
|
/// </summary>
|
|
[Serializable]
|
|
public class CordonelDeviceInfo
|
|
{
|
|
/// <summary>
|
|
/// PCB ID
|
|
/// </summary>
|
|
public String PcbId;
|
|
|
|
/// <summary>
|
|
/// Serial number of customer
|
|
/// </summary>
|
|
public String CustomerSerialNumber;
|
|
|
|
/// <summary>
|
|
/// Password container
|
|
/// </summary>
|
|
public PasswordContainer PwdContainer;
|
|
|
|
/// <summary>
|
|
/// Release version to be installed
|
|
/// </summary>
|
|
public String RequiredRelease;
|
|
|
|
/// <summary>
|
|
/// Recovery reference file
|
|
/// </summary>
|
|
public String CordonelRecoveryFileName;
|
|
|
|
}
|
|
}
|