RegionRadio split to Region (string) and RadioFrequencyMhz (Int32?), CoreRevision changed from string to Int32?, Service\MeterProcessState\Controllers\GetCorondelFw changed to GetCordonelFw and corrected
31 lines
744 B
C#
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;
|
|
}
|
|
|
|
}
|