Files
tbf/TestBenchFramework/UiBridge/AdjustmentInProgressEventArgs.cs
T

18 lines
321 B
C#

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