mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 00:39:00 +08:00
16 lines
363 B
C#
16 lines
363 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
namespace GFramework.Core.Tests.Ioc;
|
|
|
|
/// <summary>
|
|
/// 混合服务接口(用于测试优先级和非优先级混合)
|
|
/// </summary>
|
|
public interface IMixedService
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置服务名称。
|
|
/// </summary>
|
|
string? Name { get; set; }
|
|
}
|