Relativity.Transfer.JobTransferPath
namespace Relativity.Transfer
{
public class JobTransferPath
{
public long BytesTransferred { get; set; }
public string Checksum { get; set; }
public DateTime? EndTime { get; set; }
public int Index { get; set; }
public TransferPath Path { get; set; }
public int RetryCount { get; set; }
public DateTime? StartTime { get; set; }
public TransferPathStatus Status { get; set; }
public JobTransferPath();
}
}