using NUnit.Framework.Interfaces; namespace skyscraper8.Tests.NUnit; public class VoileOnlineTestResult { public string? ClassName { get; set; } public string? MethodName { get; set; } public long TimeTaken { get; set; } public string LogOutput { get; set; } public int AssertionCount { get; set; } public long TestId { get; set; } public string OutcomeLabel { get; set; } public int OutcomeSite { get; set; } public int OutcomeStatus { get; set; } }