/// /// Copyright (c) 2013-2016 Sensus Metering Systems /// using System; using Config.Entities; namespace TBF.UiBridge { public class TestCompletedEventArgs : EventArgs { public string TestName; public Results.Entities.TestRslt TestRslt; public TestCompletedEventArgs(string testName, Results.Entities.TestRslt testRslt) { this.TestName = testName; this.TestRslt = testRslt; } } }