Add navigation properties to RecResultView class

Added Action and Profile navigation properties to RecResultView, enabling direct access to related RecActionView and ProfileView data for improved object relationships and easier data retrieval in views or APIs.
This commit is contained in:
2025-12-15 16:45:46 +01:00
parent 1e21218f31
commit c672a10c97

View File

@@ -6,8 +6,12 @@ public class RecResultView
public long? ActionId { get; set; } public long? ActionId { get; set; }
public RecActionView? Action { get; set; }
public long? ProfileId { get; set; } public long? ProfileId { get; set; }
public ProfileView? Profile { get; set; }
public string? ProfileName { get; set; } public string? ProfileName { get; set; }
public short? StatusCode { get; set; } public short? StatusCode { get; set; }