17 lines
463 B
C#
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; }
|
|||
|
|
}
|
|||
|
|
}
|