mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-06 16:16:44 +08:00
12 lines
325 B
C#
12 lines
325 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
using GFramework.Cqrs.Abstractions.Cqrs;
|
|
|
|
namespace GFramework.Cqrs.Tests.Cqrs;
|
|
|
|
/// <summary>
|
|
/// 用于验证 stream 服务类型缓存的测试请求。
|
|
/// </summary>
|
|
internal sealed record DispatcherCacheStreamRequest : IStreamRequest<int>;
|