tbf/TestBenchFramework/UiBridge/TestCompletedEventArgs.cs
2015-04-15 20:32:56 +02:00

18 lines
307 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
using System;
namespace TBF.UiBridge
{
public class TestCompletedEventArgs : EventArgs
{
public Entities.TestResult TestResult;
public TestCompletedEventArgs(Entities.TestResult testResult)
{
this.TestResult = testResult;
}
}
}