Add Type and TypeName to ResultView model

Imported ResultType and added Type (ResultType?) and TypeName (string?) properties to ResultView to support representing result types alongside status information.
This commit is contained in:
2026-03-25 10:59:33 +01:00
parent fecd9219b4
commit 93669a6358

View File

@@ -1,4 +1,5 @@
using System.ComponentModel.DataAnnotations.Schema;
using ReC.Domain.Constants;
using System.ComponentModel.DataAnnotations.Schema;
namespace ReC.Domain.Views;
@@ -21,6 +22,10 @@ public class ResultView
public string? StatusName { get; set; }
public ResultType? Type { get; set; }
public string? TypeName { get; set; }
public string? Header { get; set; }
public string? Body { get; set; }