mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 00:39:00 +08:00
12 lines
340 B
C#
12 lines
340 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
using GFramework.Cqrs.Abstractions.Cqrs;
|
|
|
|
namespace GFramework.Cqrs.Tests.Cqrs;
|
|
|
|
/// <summary>
|
|
/// 用于验证按响应类型分层 request invoker 缓存的测试请求。
|
|
/// </summary>
|
|
internal sealed record DispatcherStringCacheRequest : IRequest<string>;
|