tbf/TestBenchFramework/BenchControl/GenericDevices/ITestMethod.cs

10 lines
176 B
C#
Raw Normal View History

using System.Collections.Generic;
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface ITestMethod : IComponent, ISequence
{
}
}