laatzen/ServiceFwUpdate/Common/FwUpdateSafe/CordonelDeviceInfo.cs
Thomas Wiedebusch ef0d333d66 MeterSize moved from "Logic.PrdctionToProductMapper" to "ProductionOrderCore",
RegionRadio split to Region (string) and RadioFrequencyMhz (Int32?),
CoreRevision changed from string to Int32?,
Service\MeterProcessState\Controllers\GetCorondelFw changed to GetCordonelFw and corrected
2022-12-06 13:15:53 +01:00

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;
}
}