mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 00:39:00 +08:00
12 lines
387 B
C#
12 lines
387 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
namespace GFramework.Cqrs.Abstractions.Cqrs;
|
|
|
|
/// <summary>
|
|
/// 表示一个有响应的 CQRS 请求。
|
|
/// 该接口是命令、查询以及其他请求语义的统一基接口。
|
|
/// </summary>
|
|
/// <typeparam name="TResponse">请求响应类型。</typeparam>
|
|
public interface IRequest<out TResponse>;
|