mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 00:39:00 +08:00
- 修复 YamlConfigLoader 的超长方法、依赖比较与热重载同步原语告警 - 拆分 MicrosoftDiContainerTests 与 AbstractAsyncQueryTests 的辅助类型文件以消除 MA0048 - 更新 analyzer warning reduction 跟踪文档并记录 non-incremental 构建基线变化
15 lines
322 B
C#
15 lines
322 B
C#
using GFramework.Cqrs.Abstractions.Cqrs.Query;
|
|
|
|
namespace GFramework.Core.Tests.Query;
|
|
|
|
/// <summary>
|
|
/// 测试用异步查询输入类V2
|
|
/// </summary>
|
|
public sealed class TestAsyncQueryInputV2 : IQueryInput
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置值
|
|
/// </summary>
|
|
public int Value { get; init; }
|
|
}
|