using System;

namespace Wayne.ForecourtControl
{
    public class TrxApprovedSentToPOSEventArgs : EventArgs
    {
        #region Fields
        bool success;
        string debugInfo;
        #endregion

        #region constructor
        public TrxApprovedSentToPOSEventArgs(bool success, string debugInfo)
        {
            this.success = success;
            this.debugInfo = debugInfo;
        }
        #endregion

        #region properties
        public bool Success
        {
            get { return success; }
            set { success = value; }
        }
        public string DebugInfo
        {
            get { return debugInfo; }
            set { debugInfo = value; }
        }
        #endregion
    }
}