using Edge.Core.IndustryStandardInterface.Pump; using Edge.Core.Processor;using Edge.Core.IndustryStandardInterface.Pump; using System; using System.Collections.Generic; using System.Text; namespace Dfs.WayneChina.CardTrxManager.TrxScanner { public class NoMatchFoundEventArgs : EventArgs { /// /// Pump generated sequence number. /// public int FdcSqNo { get; set; } /// /// Release token for clearing the transaction on FDC. /// public int ReleaseToken { get; set; } /// /// FDC transaction /// public FdcTransaction FdcTrx { get; set; } } }