using Raytheon.Instruments.PowerSupply;
namespace ProgramLib
{
///
/// Stores voltage and current reading
///
internal class PowerSupplyData
{
public double Voltage { get; set; }
public double Current { get; set; }
public PowerSupplyModuleInfo PowerSupplyModuleInfo { get; set; }
public bool Initialized { get; set; }
///
/// Set data to unitialized
///
public void Reset()
{
Initialized = false;
}
}
}