mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 00:39:00 +08:00
16 lines
355 B
C#
16 lines
355 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
namespace GFramework.Core.Tests.Ioc;
|
|
|
|
/// <summary>
|
|
/// 不实现优先级的服务
|
|
/// </summary>
|
|
public sealed class NonPrioritizedService : IMixedService
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置服务名称
|
|
/// </summary>
|
|
public string? Name { get; set; }
|
|
}
|