23 lines
520 B
C#
23 lines
520 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace TBF.UI.ResultsMI
|
|
{
|
|
public class PreviousResultIdEventArgs : EventArgs
|
|
{
|
|
public int BatchNr;
|
|
public IList<string> SerialNrs; /// null = Show all serial numbers
|
|
|
|
public PreviousResultIdEventArgs(int batchNr, IList<string> serialNrs)
|
|
{
|
|
BatchNr = batchNr;
|
|
SerialNrs = serialNrs;
|
|
}
|
|
|
|
public PreviousResultIdEventArgs(int batchNr)
|
|
: this(batchNr, null)
|
|
{
|
|
}
|
|
}
|
|
}
|