123456789101112131415161718192021222324252627282930313233 |
- 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
- }
- }
|