10 lines
296 B
C#
10 lines
296 B
C#
namespace DTS.Common.Interface.DASFactory.Diagnostics
|
|
{
|
|
public interface ICanDiagnosticResults
|
|
{
|
|
ICanDiagnosticResult[] CanDiagnosticResults { get; }
|
|
void ClearCanDiagnosticResults();
|
|
void SetDiagnosticResults(ICanDiagnosticResult[] results);
|
|
}
|
|
}
|