tbf/TBF/UiBridge/PulsesTestInProgressEventArgs.cs

21 lines
414 B
C#
Raw Normal View History

2018-07-17 12:16:46 +00:00
///
/// Copyright (c) 2018 Sensus Slovensko a.s.
///
using System;
using Config.Entities;
namespace TBF.UiBridge
{
public class PulsesTestInProgressEventArgs : EventArgs
{
public string TestName;
public double MinPulsesCount;
2018-07-17 12:16:46 +00:00
public PulsesTestInProgressEventArgs(string testName, double minPulsesCount)
2018-07-17 12:16:46 +00:00
{
this.TestName = testName;
this.MinPulsesCount = minPulsesCount;
2018-07-17 12:16:46 +00:00
}
}
}