You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
384 B
21 lines
384 B
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<string> GetAllErrors();
|
|
|
|
IObservable<IFileInfo> GetAllFiles();
|
|
}
|
|
}
|
|
|