GFramework/framework/events/ICanRegisterEvent.cs
GwWuYou b7b67e6256 refactor(framework): 重构框架命名空间从GFramework到GWFramework
- 将所有文件中的命名空间GFramework替换为GWFramework
- 更新项目文件GFramework.csproj中的包ID和产品名称为GWFramework
- 修改解决方案文件GFramework.sln中项目的引用名称为GWFramework
- 替换LazyThreadSafetyMode的完整命名空间引用
- 统一调整各模块间相互引用的命名空间前缀
2025-12-09 18:17:22 +08:00

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