laatzen/ServiceFwUpdate/Common/FwUpdateSafe/Consts/DataContainerName.cs
2021-10-01 11:11:04 +02:00

31 lines
854 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>
/// 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
}
}