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:
@@ -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; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user