laatzen/ServiceFwUpdate/Common/FwUpdateSafe/CordonelFirmware.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
744 B
C#

using System;
using System.Collections.Generic;
using Logic.ProductionToProductMapper.Files.Fw;
using Xylem.Common.Logic.ProductionOrderCore.FW;
namespace Xylem.ServiceFwUpdate.Common.FwUpdateSafe
{
/// <summary>
/// Cordonel firmware
/// </summary>
[Serializable]
public class CordonelFirmware
{
/// <summary>
/// Release version of this package
/// </summary>
public CordonelFwPackageInfo FwPackageInfo;
/// <summary>
/// Binary application files
/// </summary>
public List<FilePart> BinaryApplicationFiles;
/// <summary>
/// Package description file
/// </summary>
public FilePart PackageDescriptionFile;
}
}