/* * DAS.Channel.IShuntAware.cs * * Copyright © 2009 * Diversified Technical Systems, Inc. * All Rights Reserved */ namespace DTS.DAS.Concepts.DAS.Channel { /// /// Definition of the concept of shunt-check awareness. /// public interface IShuntAware { /// /// Get/set this object's measured shunt deflection value. /// double MeasuredShuntDeflectionMv { get; set; } /// /// Get/set this object's target shunt deflection value. /// double TargetShuntDeflectionMv { get; set; } } /// /// 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; } } }