mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 08:44:29 +08:00
- 修复测试辅助类型的只读暴露、空安全和线程安全问题 - 更新异步查询结果命名与init属性XML文档,保持语义一致 - 同步ai-plan恢复点与验证真值,记录PR298 nitpick跟进
15 lines
415 B
C#
15 lines
415 B
C#
using GFramework.Cqrs.Abstractions.Cqrs.Query;
|
|
|
|
namespace GFramework.Core.Tests.Query;
|
|
|
|
/// <summary>
|
|
/// 为 <see cref="AsyncQueryExecutorTests" /> 提供输入值的测试查询输入。
|
|
/// </summary>
|
|
public sealed class TestAsyncQueryInput : IQueryInput
|
|
{
|
|
/// <summary>
|
|
/// 获取查询值;该值只能在对象初始化阶段设置。
|
|
/// </summary>
|
|
public int Value { get; init; }
|
|
}
|