ISupportCheckResult
using System.Collections.Generic;
namespace Relativity.Transfer
{
public interface ISupportCheckResult
{
bool IsSupported { get; set; }
string ErrorMessage { get; }
IReadOnlyList<string> LogFileLines { get; }
IReadOnlyList<string> StandardError { get; }
IReadOnlyList<string> StandardOutput { get; }
}
}