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:
parent
1960151f77
commit
ffc96efd98
@ -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; }
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user