diff --git a/src/ReC.Application/RecActions/Commands/CreateRecActionCommand.cs b/src/ReC.Application/RecActions/Commands/CreateRecActionCommand.cs index e83ef01..0530c2a 100644 --- a/src/ReC.Application/RecActions/Commands/CreateRecActionCommand.cs +++ b/src/ReC.Application/RecActions/Commands/CreateRecActionCommand.cs @@ -21,6 +21,8 @@ public record CreateRecActionCommand : IRequest public string? HeaderQuery { get; init; } public string BodyQuery { get; init; } = null!; + + public byte Sequence { get; set; } = 1; } public class CreateRecActionCommandHandler(ISender sender, IRepository repo) : IRequestHandler