namespace EternalArrowBackup.ReportStorage.Contracts { using System; public interface IReportInfo { string ReportId { get; } DateTime DateTime { get; } bool IsCompleted { get; } bool IsEmpty { get; } bool HasErrors { get; } IObservable GetAllErrors(); IObservable GetAllFiles(); } }