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.
This commit is contained in:
2026-04-14 20:40:16 +02:00
parent 83d6832236
commit 95cb34394c

View File

@@ -33,6 +33,9 @@ public class RecActionView
[Column("PROFILE_TYPE_ID")] [Column("PROFILE_TYPE_ID")]
public ProfileType? ProfileType { get; set; } public ProfileType? ProfileType { get; set; }
[Column("PROFILE_TYPE")]
public string? ProfileTypeName { get; set; }
[Column("SEQUENCE")] [Column("SEQUENCE")]
public byte? Sequence { get; set; } public byte? Sequence { get; set; }