StatisticsTotals
namespace Relativity.Transfer.Job
{
internal class StatisticsTotals : IStatisticsTotals
{
public long TotalRequestBytes { get; set; }
public long TotalRequestFiles { get; set; }
public long TotalRequestDirectories { get; set; }
public long TotalSkippedFiles { get; set; }
public long TotalTransferredBytes { get; set; }
public long TotalTransferredFiles { get; set; }
public long TotalFilesNotFound { get; set; }
public long TotalFilePermissionErrors { get; set; }
public long TotalBadPathErrors { get; set; }
public long TotalFailedFiles { get; set; }
public long TotalFilesIdentifiedAsMalware { get; set; }
public long TotalFatalErrors { get; set; }
public bool HasDirectories => TotalRequestDirectories > 0;
}
}