tbf/TBF/Rig/GenericDevices/ISimultTestMethod.cs
2022-09-08 12:45:54 +02:00

23 lines
590 B
C#

///
/// Copyright (c) 2015 Sensus Slovensko a.s.
///
using System;
namespace TBF.Rig.GenericDevices
{
public interface ISimultTestMethod : ITestMethod
{
/// <summary>
/// True = execute this test method (communication with the water meter, etc.) simultaneously
/// with the previous step or with purging
/// </summary>
bool SimultWithPrevious { get; }
/// <summary>
/// True = execute this test method (communication with the water meter, etc.) simultaneously
/// with the next step or with emptying
/// </summary>
bool SimultWithNext { get; }
}
}