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.
This commit is contained in:
2025-12-15 14:37:57 +01:00
parent f82f4d2c65
commit fb6d6af12b

View File

@@ -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; }