15 lines
261 B
C#
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;
|
|
}
|
|
}
|
|
}
|