using System;
namespace Xylem.ServiceFwUpdate.Common.FwUpdateSafe.Consts
{
///
/// 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.
///
[Serializable]
public enum DataContainerName
{
///
/// Extended information about the FW update safe for report
///
FwUpdateSafeInfo,
///
/// Cordonel device info container
///
CordonelDeviceInfo,
///
/// Software license information
///
SoftwareLicense,
///
/// Path to update packages
///
UpdatePackageBasePath,
///
/// Update packages including configuration.json, ABC and ADF
///
UpdatePackage
}
}