Relativity.Transfer.IoResponse
namespace Relativity.Transfer
{
public class IoResponse
{
public bool Success { get; set; }
public string Filename { get; set; }
public string ErrorMessage { get; set; }
public string ErrorText { get; set; }
public IoResponse();
}
}