18 lines
341 B
C#
18 lines
341 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 TestBenchName { get; }
|
|
int TestBenchId { get; }
|
|
}
|
|
}
|