27 lines
670 B
Plaintext
27 lines
670 B
Plaintext
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;
|
|
}
|
|
}
|
|
}
|