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

37 lines
1.3 KiB
C#

using System;
namespace Xylem.ServiceFwUpdate.Common.FwUpdateSafe
{
/// <summary>
/// Paths for extracted FW-Update Safe elements stored to HDD.
/// </summary>
/// <remarks date="2020-Nov-30" author="Thomas Wiedebusch">
/// - Initial
/// </remarks>
[Serializable]
public class FwUpdatePaths
{
/// <summary>
/// Base path and name of port configuration file to from FW-Update Loader to FW-Update SW
/// </summary>
public String PortConfigFilePathName;
/// <summary>
/// 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
/// </summary>
public String MeterFilesConfigFilePathName;
/// <summary>
/// Base path and name to FW-Update SW
/// </summary>
public String FwUpdateSwPathName;
/// <summary>
/// Base path to Cordonel settings sent from FW-Update Loader to FW-Update SW
/// </summary>
public String CordonelSettings;
/// <summary>
/// Customer and order number for report file generation sent from FW-Update Loader to FW-Update SW
/// </summary>
public String CustomerAndOrderNumber;
}
}