mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 18:52:08 +08:00
- 将所有IoC相关命名空间从"IoC"重命名为"Ioc" - 将所有CQRS相关命名空间从"CQRS"重命名为"Cqrs" - 更新所有受影响的using语句以匹配新的命名空间 - 在CI工作流中添加C#命名规范校验步骤 - 修正了测试文件中的命名空间引用
12 lines
439 B
C#
12 lines
439 B
C#
using GFramework.Core.Abstractions.Cqrs.Command;
|
||
|
||
namespace GFramework.Core.Command;
|
||
|
||
/// <summary>
|
||
/// 空命令输入类,用于表示一个不包含任何输入参数的命令
|
||
/// </summary>
|
||
/// <remarks>
|
||
/// 该类实现了ICommandInput接口,作为命令模式中的输入参数载体
|
||
/// 通常用于不需要额外输入参数的简单命令操作
|
||
/// </remarks>
|
||
public sealed class EmptyCommandInput : ICommandInput; |