tbf/TestBenchFramework/UiBridge/TestCompletedEventArgs.cs
2014-07-28 09:56:40 +02:00

15 lines
247 B
C#

using System;
namespace TBF.UiBridge
{
public class TestCompletedEventArgs : EventArgs
{
public Entities.TestResult TestResult;
public TestCompletedEventArgs(Entities.TestResult testResult)
{
this.TestResult = testResult;
}
}
}