mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 17:21:16 +08:00
14 lines
304 B
C#
14 lines
304 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
using GFramework.Core.Abstractions.Model;
|
|
|
|
namespace GFramework.Core.Tests.Architectures;
|
|
|
|
/// <summary>
|
|
/// 定义用于优先级排序测试的模型契约。
|
|
/// </summary>
|
|
public interface IPriorityTestModel : IModel
|
|
{
|
|
}
|