From 3146acfa4520e6b1b91f31cb9ad5818de43e6548 Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 30 Mar 2026 11:11:28 +0200 Subject: [PATCH] Refactor InsertResultCommand to use Status enum Replaced StatusId (short?) with Status (Status?) in InsertResultCommand, moving from a numeric status identifier to a more descriptive or structured status representation from ReC.Domain.Constants. --- src/ReC.Application/Results/Commands/InsertResultCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReC.Application/Results/Commands/InsertResultCommand.cs b/src/ReC.Application/Results/Commands/InsertResultCommand.cs index f3439c1..53d6f19 100644 --- a/src/ReC.Application/Results/Commands/InsertResultCommand.cs +++ b/src/ReC.Application/Results/Commands/InsertResultCommand.cs @@ -7,7 +7,7 @@ namespace ReC.Application.Results.Commands; public record InsertResultCommand : IInsertProcedure { public long? ActionId { get; set; } - public short? StatusId { get; set; } + public Status? Status { get; set; } public string? Header { get; set; } public string? Body { get; set; } public string? Info { get; set; }