laatzen/ServiceFwUpdate/Common/FwUpdateSafe/UpdateContainer.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

31 lines
876 B
C#

using System;
using System.Collections.Generic;
using Xylem.ServiceFwUpdate.Common.FwUpdateSafe.MeterRecovery;
namespace Xylem.ServiceFwUpdate.Common.FwUpdateSafe
{
/// <summary>
/// Update container
/// </summary>
[Serializable]
public class UpdateContainer
{
/// <summary>
/// Cordonel device information
/// </summary>
public List<CordonelDeviceInfo> CordonelDeviceInfos;
/// <summary>
/// Cordonel device information
/// </summary>
public CordonelFirmware CordonelFwPackage;
/// <summary>
/// Cordonel register recovery settings
/// </summary>
public List<RecoverySettings> CordonelRegisterRecoveries;
/// <summary>
/// Cordonel device information
/// </summary>
public List<ReportTemplate> ReportTemplates;
}
}