mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 16:55:57 +08:00
13 lines
444 B
C#
13 lines
444 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
||
// SPDX-License-Identifier: Apache-2.0
|
||
|
||
using GFramework.Core.Abstractions.Lifecycle;
|
||
using GFramework.Core.Abstractions.Rule;
|
||
|
||
namespace GFramework.Core.Abstractions.Utility;
|
||
|
||
/// <summary>
|
||
/// 上下文工具接口,继承自IUtility和IContextAware接口
|
||
/// 提供具有上下文感知能力的工具功能
|
||
/// </summary>
|
||
public interface IContextUtility : IUtility, IContextAware, ILifecycle; |