2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
2016-02-13 18:25:43 +00:00
|
|
|
|
/// Copyright (c) 2013-2016 Sensus Metering Systems
|
2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
|
|
|
|
|
using System;
|
2015-12-04 16:17:20 +00:00
|
|
|
|
using Config.Entities;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
|
|
|
|
|
|
namespace TBF.UiBridge
|
|
|
|
|
|
{
|
|
|
|
|
|
public class TestCompletedEventArgs : EventArgs
|
|
|
|
|
|
{
|
2016-01-03 01:05:35 +00:00
|
|
|
|
public string TestName;
|
2016-02-13 18:25:43 +00:00
|
|
|
|
public Results.Entities.TestRslt TestRslt;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
|
2016-02-13 18:25:43 +00:00
|
|
|
|
public TestCompletedEventArgs(string testName, Results.Entities.TestRslt testRslt)
|
2014-07-28 07:54:35 +00:00
|
|
|
|
{
|
2016-01-03 01:05:35 +00:00
|
|
|
|
this.TestName = testName;
|
2016-02-13 18:25:43 +00:00
|
|
|
|
this.TestRslt = testRslt;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|