diff --git a/src/ReC.Application/Results/Commands/InsertResultCommand.cs b/src/ReC.Application/Results/Commands/InsertResultCommand.cs index 8df27c5..2134105 100644 --- a/src/ReC.Application/Results/Commands/InsertResultCommand.cs +++ b/src/ReC.Application/Results/Commands/InsertResultCommand.cs @@ -1,5 +1,6 @@ using MediatR; using ReC.Application.Common.Procedures.InsertProcedure; +using ReC.Domain.Constants; namespace ReC.Application.Results.Commands; @@ -11,6 +12,7 @@ public record InsertResultCommand : IInsertProcedure public string? Body { get; set; } public string? Info { get; set; } public string? Error { get; set; } + public ResultType? Type { get; set; } } public class InsertResultProcedureHandler(ISender sender) : IRequestHandler