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