old_flsystem/类库/Api.Framework/Events/BaseEvents.cs

20 lines
428 B
C#
Raw Normal View History

2022-09-20 03:10:29 +00:00
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; }
}
}