Relativity.Transfer.SerializedBatch
namespace Relativity.Transfer
{
public sealed class SerializedBatch
{
public int BatchNumber { get; }
public string File { get; }
public bool LocalPaths { get; }
public long MinSourcePathId { get; }
public long MaxSourcePathId { get; }
public int TotalBatchCount { get; }
public long TotalByteCount { get; }
public long TotalDirectoryCount { get; }
public long TotalFileCount { get; }
public SerializedBatch();
public SerializedBatch(SerializedBatch source);
public SerializedBatch DeepCopy();
}
}