mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-08 17:44:29 +08:00
8 lines
271 B
C#
8 lines
271 B
C#
namespace GFramework.Cqrs.Abstractions.Cqrs.Command;
|
|
|
|
/// <summary>
|
|
/// 命令输入接口,定义命令模式中输入数据的契约
|
|
/// 该接口作为标记接口使用,不包含任何成员定义
|
|
/// </summary>
|
|
public interface ICommandInput : IInput;
|