From 2dbeae24d590fc3fe0bdbc3ef1bd83d47c3fa380 Mon Sep 17 00:00:00 2001 From: TekH Date: Thu, 26 Jun 2025 14:27:54 +0200 Subject: [PATCH] Refactor property name for consistency Updated the property name `UseridFkIntEcm` to `UserIdFkIntEcm` to adhere to a more consistent naming convention. --- EnvelopeGenerator.Domain/Entities/EGUser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnvelopeGenerator.Domain/Entities/EGUser.cs b/EnvelopeGenerator.Domain/Entities/EGUser.cs index 06d86e8e..58c7c795 100644 --- a/EnvelopeGenerator.Domain/Entities/EGUser.cs +++ b/EnvelopeGenerator.Domain/Entities/EGUser.cs @@ -24,7 +24,7 @@ namespace EnvelopeGenerator.Domain.Entities [Required] [Column("USERID_FK_INT_ECM")] - public int UseridFkIntEcm { get; set; } + public int UserIdFkIntEcm { get; set; } [Column("DELETED_WHEN")] public DateTime DeletedWhen { get; set; }