Files
DP44/Common/DTS.Common.DAS.Concepts/.svn/pristine/ef/efbdd7a38eddd225cf72291603da2c6f9003f4a1.svn-base

36 lines
833 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
/*
* DTS.Common.DAS.Concepts.DAS.Channel.IShuntAware.cs
*
* Copyright © 2009
* Diversified Technical Systems, Inc.
* All Rights Reserved
*/
namespace DTS.Common.DAS.Concepts.DAS.Channel
{
/// <summary>
/// Definition of the concept of shunt-check awareness.
/// </summary>
public interface IShuntAware
{
/// <summary>
/// Get/set this object's <see cref="double"/> measured shunt deflection value.
/// </summary>
double MeasuredShuntDeflectionMv
{
get;
set;
}
/// <summary>
/// Get/set this object's <see cref="double"/> target shunt deflection value.
/// </summary>
double TargetShuntDeflectionMv
{
get;
set;
}
}
}