IPathValidator
using System.Collections.Generic;
namespace Relativity.Transfer
{
public interface IPathValidator
{
PathValidationResult Validate(TransferPath transferPath);
void Validate(IEnumerable<string> searchPaths, string targetPath);
}
}