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