mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 08:44:29 +08:00
7 lines
189 B
C#
7 lines
189 B
C#
namespace GFramework.Cqrs.Abstractions.Cqrs.Query;
|
|
|
|
/// <summary>
|
|
/// 查询输入接口,定义了查询操作的输入规范
|
|
/// </summary>
|
|
public interface IQueryInput : IInput;
|