21 lines
414 B
C#
21 lines
414 B
C#
///
|
|
/// 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;
|
|
|
|
public PulsesTestInProgressEventArgs(string testName, double minPulsesCount)
|
|
{
|
|
this.TestName = testName;
|
|
this.MinPulsesCount = minPulsesCount;
|
|
}
|
|
}
|
|
}
|