tbf/TestBenchFramework/UiBridge/AdjustmentInProgressEventArgs.cs
2015-04-15 20:32:56 +02:00

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;
}
}
}