tbf/TestBenchFramework/BenchControl/GenericDevices/IErrorFlags.cs

15 lines
257 B
C#

///
/// Copyright (c) 2017 Sensus Metering Systems
///
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IErrorFlags : IComponent
{
Config.Entities.ErrorFlagsMode Mode { get; }
int GetErrorFlags();
}
}