mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 19:03:29 +08:00
- 将所有 GWFramework 命名空间重命名为 GFramework - 更新解决方案文件中的项目名称和路径引用 - 修改项目文件中的 PackageId、Product 和 URL 配置 - 统一框架内各模块的命名空间前缀为 GFramework - 调整根命名空间配置以匹配新的项目结构
13 lines
314 B
C#
13 lines
314 B
C#
namespace GFramework.framework.events;
|
|
|
|
/// <summary>
|
|
/// 提供统一注销功能的接口,用于管理需要注销的对象列表
|
|
/// </summary>
|
|
public interface IUnRegisterList
|
|
{
|
|
/// <summary>
|
|
/// 获取需要注销的对象列表
|
|
/// </summary>
|
|
List<IUnRegister> UnregisterList { get; }
|
|
}
|