using System; namespace TBF.UiBridge { public class TestCompletedEventArgs : EventArgs { public Entities.TestResult TestResult; public TestCompletedEventArgs(Entities.TestResult testResult) { this.TestResult = testResult; } } }