Relativity.Transfer.Dto.SerializedPathsBatchDto
class 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();
}
}