tbf/TBF/UiBridge/TestCompletedEventArgs.cs

20 lines
426 B
C#

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