mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 10:34:30 +08:00
- 将EmptyCommentInput类重命名为EmptyCommandInput以修正拼写错误 - 更新README.md文档中的相关引用和代码示例 - 移除文件开头的BOM字符
13 lines
423 B
C#
13 lines
423 B
C#
using GFramework.Core.Abstractions.command;
|
||
|
||
namespace GFramework.Core.command;
|
||
|
||
/// <summary>
|
||
/// 空命令输入类,用于表示一个不包含任何输入参数的命令
|
||
/// </summary>
|
||
/// <remarks>
|
||
/// 该类实现了ICommandInput接口,作为命令模式中的输入参数载体
|
||
/// 通常用于不需要额外输入参数的简单命令操作
|
||
/// </remarks>
|
||
public sealed class EmptyCommandInput : ICommandInput;
|