ErrorPath
namespace Relativity.Transfer
{
public class ErrorPath
{
public string Path { get; set; }
public string Reason { get; set; }
public ErrorPath(string path, string reason)
{
Path = path;
Reason = reason;
}
}
}