GFramework/framework/events/ICanRegisterEvent.cs
GwWuYou da3941d6af refactor(framework): 重构框架命名空间和项目名称
- 将所有 GWFramework 命名空间重命名为 GFramework
- 更新解决方案文件中的项目名称和路径引用
- 修改项目文件中的 PackageId、Product 和 URL 配置
- 统一框架内各模块的命名空间前缀为 GFramework
- 调整根命名空间配置以匹配新的项目结构
2025-12-09 18:28:55 +08:00

11 lines
449 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using GFramework.framework.rule;
namespace GFramework.framework.events;
/// <summary>
/// 定义一个可以注册事件的接口继承自IBelongToArchitecture接口。
/// 该接口用于标识那些能够注册事件的对象,通常在框架的事件系统中使用。
/// 实现此接口的类型表明它属于某个架构组件,并具备事件注册的能力。
/// </summary>
public interface ICanRegisterEvent:IBelongToArchitecture;