tbf/TestBenchFramework/BenchControl/GenericDevices/IHasCompleted.cs

9 lines
122 B
C#
Raw Normal View History


namespace TBF.BenchControl.GenericDevices
{
interface IHasCompleted
{
bool Completed { get; }
}
}