tbf/TBF/UiBridge/TestSelectedEventArgs.cs
2021-10-26 19:38:09 +02:00

33 lines
781 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
using System;
using TBF.Rig;
namespace TBF.UiBridge
{
public class TestSelectedEventArgs : EventArgs
{
public Config.Entities.Test Test;
public int RepetitionNr;
public FeedingPath FeedingPath;
public BenchPath BenchPath;
public OutputPath OutputPath;
public MetersPath MetersPath;
public HeatMetersPath HeatMetersPath;
public int TotalPulses;
public TestSelectedEventArgs(Config.Entities.Test test, int repetitionNr, FeedingPath f, BenchPath b, OutputPath o, MetersPath m, HeatMetersPath h, int tp)
{
Test = test;
RepetitionNr = repetitionNr;
FeedingPath = f;
BenchPath = b;
OutputPath = o;
MetersPath = m;
HeatMetersPath = h;
TotalPulses = tp;
}
}
}