Files
DP44/Common/DTS.Common.DAS.Concepts/.svn/pristine/9b/9b1b4ebb2e847904ea1e500ec3dfc11ab646dd7b.svn-base

27 lines
588 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
/*
* DTS.Common.DAS.Concepts.DAS.Channel.IInversionAware.cs
*
* Copyright © 2009
* Diversified Technical Systems, Inc.
* All Rights Reserved
*/
namespace DTS.Common.DAS.Concepts.DAS.Channel
{
/// <summary>
/// Definition of the concept of inversion awareness.
/// </summary>
public interface IInversionAware
{ ///
/// <summary>
/// Get/set this object's inversion state <see cref="bool"/>.
/// </summary>
///
bool IsInverted
{
get;
set;
}
}
}