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

57 lines
1.4 KiB
C#

using System;
namespace Xylem.ServiceFwUpdate.Common.FwUpdateSafe
{
/// <summary>
/// Extended information of FW update safe
/// </summary>
[Serializable]
public class FwUpdateSafeInfo
{
/// <summary>
/// Customer name for logging
/// </summary>
public String CustomerName;
/// <summary>
/// Customer number for logging
/// </summary>
public String CustomerNumber;
/// <summary>
/// Update order - position
/// </summary>
public String FwUpdateOrderPosition;
/// <summary>
/// FW Update safe name for logging
/// </summary>
public String FwUpdateSafeName;
/// <summary>
/// FW Update builder information for logging
/// </summary>
public String FwUpdateBuilderInfo;
/// <summary>
/// FW Update built date and time for logging
/// </summary>
public DateTime SafeBuiltDateTime;
/// <summary>
/// FW Update valid date
/// </summary>
public DateTime FwUpdateValidDate;
/// <summary>
/// FW Update builder operator identifier for logging
/// </summary>
public String FwUpdateBuilderOperatorId;
/// <summary>
/// FW Update in field operator identifier for report
/// </summary>
public String FwUpdateFieldOperatorId;
}
}