/* * DTS.Common.DAS.Concepts.DAS.Channel.IShuntAware.cs * * Copyright © 2009 * Diversified Technical Systems, Inc. * All Rights Reserved */ namespace DTS.Common.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; } } }