Files
DP44/Common/DTS.Common/Interface/DASFactory/Download/IDownloadReport.cs
2026-04-17 14:55:32 -04:00

17 lines
463 B
C#

using DTS.Common.Interface.DownloadEvent;
namespace DTS.Common.Interface.DASFactory.Download
{
public interface IDownloadReport
{
/// <summary>
/// An array of all events stored on this DAS.
/// </summary>
IEventInfo[] Events { get; set; }
/// <summary>
/// An array of all UART events stored on this DAS.
/// </summary>
IUARTEventInfo[] UARTEvents { get; set; }
}
}