using System; namespace Wayne.ForecourtControl { public class PresetSentToPOSEventArgs : EventArgs { #region Fields bool success; string debugInfo; #endregion #region constructor public PresetSentToPOSEventArgs(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 } }