using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MgTestAdmin.Model { /// /// Describes the result of an executed parameter set /// public class TestResult { /// /// The parameter set that was executed /// public int ParamSet { get; set; } /// /// The description of the test result /// public string Description { get; set; } /// /// The content type of the test result /// public string ContentType { get; set; } /// /// The result content /// public string Result { get; set; } } public class TestResultSet { public TestResult ApiResult { get; set; } public TestResult HttpResult { get; set; } } }