Add RecResultView entity for recommendation results

Introduced the RecResultView class in the ReC.Domain.Entities namespace. This class encapsulates properties related to recommendation results, including identifiers, status, result details, and audit metadata such as who added or changed the result and when.
This commit is contained in:
2025-12-15 16:33:41 +01:00
parent 6b8286a386
commit ae79a60605

View File

@@ -0,0 +1,28 @@
namespace ReC.Domain.Entities;
public class RecResultView
{
public long Id { get; set; }
public long ActionId { get; set; }
public long ProfileId { get; set; }
public string? ProfileName { get; set; }
public short StatusId { get; set; }
public string? Status { get; set; }
public string? ResultHeader { get; set; }
public string? ResultBody { get; set; }
public string AddedWho { get; set; } = null!;
public DateTime AddedWhen { get; set; }
public string? ChangedWho { get; set; }
public DateTime? ChangedWhen { get; set; }
}