using System;
namespace Xylem.ServiceFwUpdate.Common.FwUpdateSafe
{
///
/// Paths for extracted FW-Update Safe elements stored to HDD.
///
///
/// - Initial
///
[Serializable]
public class FwUpdatePaths
{
///
/// Base path and name of port configuration file to from FW-Update Loader to FW-Update SW
///
public String PortConfigFilePathName;
///
/// Base path and name of which contains the meter file names that can be erased before the FW-Update
/// to free disk space and have to be restored after the FW-Update
///
public String MeterFilesConfigFilePathName;
///
/// Base path and name to FW-Update SW
///
public String FwUpdateSwPathName;
///
/// Base path to Cordonel settings sent from FW-Update Loader to FW-Update SW
///
public String CordonelSettings;
///
/// Customer and order number for report file generation sent from FW-Update Loader to FW-Update SW
///
public String CustomerAndOrderNumber;
}
}