From 95cb34394cbfa1cba27bf31667e0f2041f2f64ed Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 14 Apr 2026 20:40:16 +0200 Subject: [PATCH] Add ProfileTypeName property to RecActionView Added the ProfileTypeName string property to RecActionView, mapped to the "PROFILE_TYPE" column, to store the profile type name alongside the existing ProfileType property. --- src/ReC.Domain/Views/RecActionView.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ReC.Domain/Views/RecActionView.cs b/src/ReC.Domain/Views/RecActionView.cs index 585b124..b7dfe1c 100644 --- a/src/ReC.Domain/Views/RecActionView.cs +++ b/src/ReC.Domain/Views/RecActionView.cs @@ -33,6 +33,9 @@ public class RecActionView [Column("PROFILE_TYPE_ID")] public ProfileType? ProfileType { get; set; } + [Column("PROFILE_TYPE")] + public string? ProfileTypeName { get; set; } + [Column("SEQUENCE")] public byte? Sequence { get; set; }