17 lines
312 B
C#
17 lines
312 B
C#
///
|
|
/// Copyright (c) 2015 Sensus Metering Systems
|
|
/// Author: Milan Hanajík
|
|
///
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
/// <summary>
|
|
/// Bench information interface
|
|
/// </summary>
|
|
public interface IBenchInfo : IComponent
|
|
{
|
|
string TestBenchId { get; }
|
|
}
|
|
}
|