tbf/TestBenchFramework/UiBridge/AdjustmentInProgressEventArgs.cs

19 lines
326 B
C#

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