tbf/TestBenchFramework/UiBridge/TestSelectedEventArgs.cs
2014-07-28 09:56:40 +02:00

28 lines
620 B
C#

using System;
using TBF.BenchControl;
namespace TBF.UiBridge
{
public class TestSelectedEventArgs : EventArgs
{
public Entities.Test Test;
public int RepetitionNr;
public FeedingPath FeedingPath;
public BenchPath BenchPath;
public OutputPath OutputPath;
public MetersPath MetersPath;
public int TotalPulses;
public TestSelectedEventArgs(Entities.Test test, int repetitionNr, FeedingPath f, BenchPath b, OutputPath o, MetersPath m, int tp)
{
Test = test;
RepetitionNr = repetitionNr;
FeedingPath = f;
BenchPath = b;
OutputPath = o;
MetersPath = m;
TotalPulses = tp;
}
}
}