From ffc96efd98820a2287f393980c5642db350224c1 Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 1 Dec 2025 14:05:03 +0100 Subject: [PATCH] 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. --- src/ReC.Domain/Entities/Profile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReC.Domain/Entities/Profile.cs b/src/ReC.Domain/Entities/Profile.cs index 3d42952..b2536eb 100644 --- a/src/ReC.Domain/Entities/Profile.cs +++ b/src/ReC.Domain/Entities/Profile.cs @@ -22,7 +22,7 @@ public class Profile public string? Mandantor { get; set; } [Column("PROFILE_NAME")] - public string? ProfileName { get; set; } + public string? Name { get; set; } [Column("DESCRIPTION")] public string? Description { get; set; }