mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-06 16:16:44 +08:00
docs(cqrs): 修正泛型类型参数的XML文档注释
- 修正NotificationBase中TInput类型的XML文档注释,将input更正为INotificationInput - 修正QueryBase中TInput类型的XML文档注释,将TResponse更正为IQueryInput - 修正RequestBase中TInput类型的XML文档注释,将TResponse更正为IRequestInput
This commit is contained in:
parent
b747787b87
commit
7e402d91d3
@ -19,7 +19,7 @@ namespace GFramework.Cqrs.Notification;
|
||||
/// <summary>
|
||||
/// 为携带输入模型的 CQRS 通知提供统一基类。
|
||||
/// </summary>
|
||||
/// <typeparam name="TInput">通知输入类型,必须实现 <see cref="input" />。</typeparam>
|
||||
/// <typeparam name="TInput">通知输入类型,必须实现 <see cref="INotificationInput" />。</typeparam>
|
||||
/// <param name="input">通知广播时携带的输入对象。</param>
|
||||
/// <remarks>
|
||||
/// 该类型继续保留在历史公开命名空间中,以避免调用方因 runtime 程序集拆分而批量修改继承层次。
|
||||
|
||||
@ -18,7 +18,7 @@ namespace GFramework.Cqrs.Query;
|
||||
/// <summary>
|
||||
/// 为携带输入模型的 CQRS 查询提供统一基类。
|
||||
/// </summary>
|
||||
/// <typeparam name="TInput">查询输入类型,必须实现 <see cref="TResponse" />。</typeparam>
|
||||
/// <typeparam name="TInput">查询输入类型,必须实现 <see cref="IQueryInput" />。</typeparam>
|
||||
/// <typeparam name="TResponse">查询响应类型。</typeparam>
|
||||
/// <param name="input">查询执行所需的输入对象。</param>
|
||||
/// <remarks>
|
||||
|
||||
@ -19,7 +19,7 @@ namespace GFramework.Cqrs.Request;
|
||||
/// <summary>
|
||||
/// 为携带输入模型的通用 CQRS 请求提供统一基类。
|
||||
/// </summary>
|
||||
/// <typeparam name="TInput">请求输入类型,必须实现 <see cref="TResponse" />。</typeparam>
|
||||
/// <typeparam name="TInput">请求输入类型,必须实现 <see cref="IRequestInput" />。</typeparam>
|
||||
/// <typeparam name="TResponse">请求响应类型。</typeparam>
|
||||
/// <param name="input">请求执行所需的输入对象。</param>
|
||||
/// <remarks>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user