Rename ProfileName property to Name in Profile class

The `ProfileName` property in the `Profile` class was renamed to `Name` to improve clarity or consistency. The `[Column("PROFILE_NAME")]` attribute remains unchanged, ensuring the database column mapping is unaffected.
This commit is contained in:
tekh 2025-12-01 14:05:03 +01:00
parent 1960151f77
commit ffc96efd98

View File

@ -22,7 +22,7 @@ public class Profile
public string? Mandantor { get; set; } public string? Mandantor { get; set; }
[Column("PROFILE_NAME")] [Column("PROFILE_NAME")]
public string? ProfileName { get; set; } public string? Name { get; set; }
[Column("DESCRIPTION")] [Column("DESCRIPTION")]
public string? Description { get; set; } public string? Description { get; set; }