// Copyright (c) 2025-2026 GeWuYou // SPDX-License-Identifier: Apache-2.0 namespace GFramework.Core.Tests.Ioc; /// /// 混合服务接口(用于测试优先级和非优先级混合) /// public interface IMixedService { /// /// 获取或设置服务名称。 /// string? Name { get; set; } }