IJobTransferPath
using System;
namespace Relativity.Transfer
{
public interface IJobTransferPath
{
long BytesTransferred { get; }
string Checksum { get; }
DateTime? EndTime { get; }
int Index { get; }
TransferPath Path { get; }
int RetryCount { get; set; }
DateTime? StartTime { get; }
TransferPathStatus Status { get; set; }
}
}