using Edge.Core.Processor;using Edge.Core.IndustryStandardInterface.Pump;
using Dfs.WayneChina.SpsDbModels.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace Dfs.WayneChina.CardTrxManager.TrxScanner
{
///
/// EventArgs for the matching transaction.
///
public class MatchingTrxFoundEventArgs
{
///
/// Method of payment.
///
public string MOP { get; set; }
///
/// QR code string.
///
public string QRCode { get; set; }
///
/// Pump generated sequence number.
///
public int FdcSqNo { get; set; }
///
/// Release token for clearing the transaction on FDC.
///
public int ReleaseToken { get; set; }
///
/// Sps Card transaction record.
///
public TTrdinfo TrdInfo { get; set; }
///
/// FDC transaction
///
public FdcTransaction FdcTrx { get; set; }
}
}