using System; namespace TBF.Forms { public class PreviousResultIdEventArgs : EventArgs { public int BatchNr; public PreviousResultIdEventArgs(int batchNr) { BatchNr = batchNr; } } }