Files
DP44/Common/DTS.Common.DAS.Concepts/.svn/pristine/c7/c7cd4b8f4afa50061d4fc2af3df377fb160c843b.svn-base

27 lines
670 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
namespace DTS.Common.DAS.Concepts.DAS.Channel
{
/// <summary>
/// Definition of the concept of calsignal-check awareness.
/// </summary>
public interface ICalSignalAware
{
/// <summary>
/// Get/set this object's <see cref="double"/> measured shunt deflection value.
/// </summary>
double MeasuredCalSignalMv
{
get;
set;
}
/// <summary>
/// Get/set this object's <see cref="double"/> target shunt deflection value.
/// </summary>
double TargetCalSignalMv
{
get;
set;
}
}
}