tbf/TBF/UiBridge/TestCompletedEventArgs.cs

21 lines
408 B
C#
Raw Normal View History

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