mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-23 03:04:29 +08:00
- 将所有framework命名空间下的类迁移至GFramework.Core命名空间 - 更新所有相关using引用从framework到Core - 重命名项目文件夹及文件路径以匹配新的命名空间结构 - 在解决方案中添加GFramework.Core项目引用 - 配置项目依赖关系并移除旧的Generator引用冲突 - 创建独立的GFramework.Core.csproj项目文件支持多目标框架
13 lines
219 B
C#
13 lines
219 B
C#
namespace GFramework.Core.events;
|
|
|
|
/// <summary>
|
|
/// 提供注销功能的接口
|
|
/// </summary>
|
|
public interface IUnRegister
|
|
{
|
|
/// <summary>
|
|
/// 执行注销操作
|
|
/// </summary>
|
|
void UnRegister();
|
|
}
|