mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 16:55:57 +08:00
14 lines
286 B
C#
14 lines
286 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
using GFramework.Core.Abstractions.Bases;
|
|
|
|
namespace GFramework.Core.Tests.Ioc;
|
|
|
|
/// <summary>
|
|
/// 优先级服务接口
|
|
/// </summary>
|
|
public interface IPrioritizedService : IPrioritized, IMixedService
|
|
{
|
|
}
|