using Raytheon.Instruments.PowerSupply; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ProgramLib { /// /// Stores voltage and current reading /// internal class PowerSupplyData { public double _voltage; public double _current; public PowerSupplyModuleInfo _powerSupplyModuleInfo; public bool _initialized; /// /// Set data to unitialized /// public void Reset() { _initialized = false; } } }