tbf/TestBenchFramework/UiBridge/TestCompletedEventArgs.cs

19 lines
312 B
C#
Raw Normal View History

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