<PackageReference Include="Relativity.Server.Transfer.SDK" Version="7.7.0" />

Relativity.Transfer.Dto.SerializedPathsBatchDto

namespace Relativity.Transfer.Dto { internal class SerializedPathsBatchDto { public int BatchNumber { get; set; } public bool LocalPaths { get; set; } public long MinSourcePathId { get; set; } public long MaxSourcePathId { get; set; } public List<TransferPathDto> Paths { get; set; } public int TotalBatchCount { get; set; } public long TotalByteCount { get; set; } public long TotalDirectoryCount { get; set; } public long TotalFileCount { get; set; } public SerializedPathsBatchDto(); } }