Files
laatzen/ServiceFwUpdate/Common/FwUpdateDb/FwUpdatePowerCorrectionDb.cs
T

56 lines
1.6 KiB
C#

using System;
namespace Xylem.ServiceFwUpdate.Common.FwUpdateDb
{
/// <summary>
/// Power correction parameters from DB accumulated at EOL - Production
/// </summary>
public class FwUpdatePowerCorrectionDb
{
/// <summary>
/// Unique identification of PCB
/// </summary>
public String PcbId { get; set; }
/// <summary>
/// Date time UTC at EOL - Production
/// </summary>
public DateTime? ProductionDateTimeUtc { get; set; }
/// <summary>
/// Total used seconds at EOL - Production
/// </summary>
public UInt32 ProductionTotalUsedSeconds_s { get; set; }
/// <summary>
/// Total used charge of batteries at EOL - Production
/// </summary>
public UInt64 ProductionTotalUsedCharge_uAs { get; set; }
/// <summary>
/// Radio system state at EOL - Production
/// </summary>
public Byte? ProductionRadioSystemState { get; set; }
/// <summary>
/// Pulse adapter was installed during at EOL - Production
/// </summary>
public Boolean ProductionPulseAdapterIsInstalled { get; set; }
/// <summary>
/// Pulse mode during at EOL - Production
/// </summary>
public Byte ProductionPulseMode { get; set; }
/// <summary>
/// Pulse distribution at EOL - Production
/// </summary>
public Boolean ProductionPulseEvenDistribution { get; set; }
/// <summary>
/// Detected region at EOL - Production
/// </summary>
public String ProductionRegion { get; set; }
}
}