tbf/TestBenchFramework/UiBridge/AdjustmentInProgressEventArgs.cs
2015-01-28 18:18:46 +01:00

15 lines
261 B
C#

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