/* * DTS.Common.DAS.Concepts.DAS.Channel.IVoltageInsertionAware.cs * * Copyright © 2012 * Diversified Technical Systems, Inc. * All Rights Reserved */ namespace DTS.Common.DAS.Concepts.DAS.Channel { /// /// Definition of the concept of shunt-check awareness. /// public interface IVoltageInsertionAware { /// /// Get/set this object's measured shunt deflection value. /// double ExpectedGain { get; set; } /// /// Get/set this object's target shunt deflection value. /// double MeasuredGain { get; set; } } }