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:
28
src/ReC.Domain/Entities/RecResultView.cs
Normal file
28
src/ReC.Domain/Entities/RecResultView.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user