19 lines
310 B
C#
19 lines
310 B
C#
///
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
///
|
|
using System;
|
|
using Config.Entities;
|
|
|
|
namespace TBF.UiBridge
|
|
{
|
|
public class AdjustmentInProgressEventArgs : EventArgs
|
|
{
|
|
public string TestName;
|
|
|
|
public AdjustmentInProgressEventArgs(string testName)
|
|
{
|
|
this.TestName = testName;
|
|
}
|
|
}
|
|
}
|