mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 00:39:00 +08:00
18 lines
490 B
C#
18 lines
490 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
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; }
|
|
}
|