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.
This commit is contained in:
2026-03-30 11:11:28 +02:00
parent f363872e7a
commit 3146acfa45

View File

@@ -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; }