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