namespace DTS.Common.DAS.Concepts.DAS.Channel { /// /// Definition of the concept of calsignal-check awareness. /// public interface ICalSignalAware { /// /// Get/set this object's measured shunt deflection value. /// double MeasuredCalSignalMv { get; set; } /// /// Get/set this object's target shunt deflection value. /// double TargetCalSignalMv { get; set; } } }