using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.SQLExaminer { public class ExaminerProcessResult { public ExaminerProcessExitCode ExitCode { get; set; } public String Output { get; set; } } }