tbf/TestBenchFramework/Entities/IHasValves.cs

10 lines
201 B
C#
Raw Normal View History


namespace TBF.Entities
{
public interface IHasValves
{
string ValvesOpen { get; set; } /// List of valves to be opened
string ValvesClose { get; set; } /// List of valves to be closed
}
}