mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 00:39:00 +08:00
11 lines
346 B
C#
11 lines
346 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
namespace GFramework.Cqrs.Abstractions.Cqrs.Command;
|
|
|
|
/// <summary>
|
|
/// 命令输入接口,定义命令模式中输入数据的契约
|
|
/// 该接口作为标记接口使用,不包含任何成员定义
|
|
/// </summary>
|
|
public interface ICommandInput : IInput;
|