ITransferPathCommand
using System.Collections.Generic;
using System.Threading;
namespace Relativity.Transfer
{
public interface ITransferPathCommand
{
IReadOnlyList<ITransferIssue> Issues { get; }
TransferPathResult Execute(TransferPath path, CancellationToken token);
void PreExecute(CancellationToken token);
void PostExecute(CancellationToken token);
}
}