From fb6d6af12b0f2c0feefad50e7bd7741c5932bd97 Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 15 Dec 2025 14:37:57 +0100 Subject: [PATCH] Change ProfileType to byte? in RecActionView Updated the ProfileType property in RecActionView from string? to byte? to improve type safety and performance by using a numeric value instead of a string. --- src/ReC.Domain/Entities/RecActionView.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReC.Domain/Entities/RecActionView.cs b/src/ReC.Domain/Entities/RecActionView.cs index 26f247a..8bc7835 100644 --- a/src/ReC.Domain/Entities/RecActionView.cs +++ b/src/ReC.Domain/Entities/RecActionView.cs @@ -26,7 +26,7 @@ public class RecActionView public string? ProfileName { get; set; } - public string? ProfileType { get; set; } + public byte? ProfileType { get; set; } public byte? Sequence { get; set; }