tbf/TestBenchFramework/Entities/IHasValves.cs
2015-04-15 20:32:56 +02:00

12 lines
260 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
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
}
}