using GFramework.Cqrs.Abstractions.Cqrs.Command; namespace GFramework.Core.Tests.Command; /// /// 表示 使用的测试命令输入。 /// public sealed class TestCommandInput : ICommandInput { /// /// 获取或设置测试值。 /// public int Value { get; init; } }