Relativity.Transfer.SerializedPathsResult
namespace Relativity.Transfer
{
public sealed class SerializedPathsResult
{
public IList<SerializedBatch> Batches { get; }
public bool LocalPaths { get; }
public TimeSpan Elapsed { get; }
public IEnumerable<ErrorPath> ErrorPaths { get; }
public long MinSourcePathId { get; set; }
public long MaxSoucePathId { get; set; }
public IEnumerable<string> SearchPaths { get; }
public double SearchRateFps { get; }
public long TotalByteCount { get; }
public long TotalDirectoryCount { get; }
public long TotalFileCount { get; }
public SerializedPathsResult(IEnumerable<string> searchPaths, IEnumerable<SerializedBatch> batches, IEnumerable<ErrorPath> errorPaths, bool localPaths, TimeSpan elapsed);
}
}