Files

20 lines
637 B
C#
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00

namespace DTS.DASLib.Service
{
/// <summary>
/// diagnostics interface for a DAS unit, see <see cref="IDASCommunication" />.
/// </summary>
public interface IDiagnos
{
DiagnosticsActions[] ChannelDiagnostics { get; set; }
DiagnosticsResult[] ChannelDiagnosticsResults { get; set; }
ModuleDiagnosticsResult[] ModuleDiagnosticsResults { get; set; }
BaseInputValues BaseInput { get; set; }
ClockSyncStatus DASClockSyncStatus { get; set; }
ArmCheckActions ArmCheckActions { get; set; }
ArmCheckResults ArmCheckResults { get; set; }
}
}