using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Api.Framework.Events { /// /// 事件基类 /// public class BaseEvents : EventArgs { /// /// 是否取消传递 true:消息将不往后传,false:继续传递 /// public bool Cancel { get; set; } } }