21 lines
408 B
C#
21 lines
408 B
C#
///
|
|
/// Copyright (c) 2013-2023 Sensus Slovensko a.s.
|
|
///
|
|
using System;
|
|
using Results.Entities;
|
|
|
|
namespace TBF.UiBridge
|
|
{
|
|
public class TestCompletedEventArgs : EventArgs
|
|
{
|
|
public string TestName;
|
|
public TestRslt TestRslt; /// If null => just redraw results
|
|
|
|
public TestCompletedEventArgs(string testName, TestRslt testRslt)
|
|
{
|
|
TestName = testName;
|
|
TestRslt = testRslt;
|
|
}
|
|
}
|
|
}
|