12 lines
384 B
Plaintext
12 lines
384 B
Plaintext
|
|
namespace DTS.Common.Interface.DASFactory.Config
|
||
|
|
{
|
||
|
|
public interface IVoltageInsertionEnabled
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Indicates that Voltage Insertion was detected as being on
|
||
|
|
/// http://manuscript.dts.local/f/cases/34284/Warn-when-VoltageInsertion-switches-are-set
|
||
|
|
/// </summary>
|
||
|
|
bool VoltageInsertionEnabled { get; }
|
||
|
|
}
|
||
|
|
}
|