21 lines
406 B
C#
21 lines
406 B
C#
///
|
|
/// 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;
|
|
}
|
|
}
|
|
}
|