laatzen/ServiceFwUpdate/Common/FwUpdateSafe/Consts/DataContainerName.cs
2023-10-23 17:38:27 +02:00

35 lines
994 B
C#

using System;
namespace Xylem.ServiceFwUpdate.Common.FwUpdateSafe.Consts
{
/// <summary>
/// Data container name will be used for flexible data transfer from
/// the FW-Update loader to the FW-Update SW to identify the container
/// and parse the serial stream correctly.
/// </summary>
[Serializable]
public enum DataContainerName
{
/// <summary>
/// Extended information about the FW update safe for report
/// </summary>
FwUpdateSafeInfo,
/// <summary>
/// Cordonel device info container
/// </summary>
CordonelDeviceInfo,
/// <summary>
/// Software license information
/// </summary>
SoftwareLicense,
/// <summary>
/// Path to update packages
/// </summary>
UpdatePackageBasePath,
/// <summary>
/// Update packages including configuration.json, ABC and ADF
/// </summary>
UpdatePackage
}
}