/* * DTS.Common.DAS.Concepts.DAS.Channel.IInversionAware.cs * * Copyright © 2009 * Diversified Technical Systems, Inc. * All Rights Reserved */ namespace DTS.Common.DAS.Concepts.DAS.Channel { /// /// Definition of the concept of inversion awareness. /// public interface IInversionAware { /// /// /// Get/set this object's inversion state . /// /// bool IsInverted { get; set; } } }