From 773b939a5ccd7f4e91091a050e97f452955d6a97 Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 1 Dec 2025 15:25:33 +0100 Subject: [PATCH] Rename `Guid` property to `Id` in `EndpointParam` class The `Guid` property in the `EndpointParam` class was renamed to `Id` to improve code readability and align with naming conventions. The `[Key]` and `[Column("GUID")]` attributes remain unchanged, ensuring the database schema mapping and primary key designation are preserved. --- src/ReC.Domain/Entities/EndpointParam.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReC.Domain/Entities/EndpointParam.cs b/src/ReC.Domain/Entities/EndpointParam.cs index da3c2df..deb3c00 100644 --- a/src/ReC.Domain/Entities/EndpointParam.cs +++ b/src/ReC.Domain/Entities/EndpointParam.cs @@ -13,7 +13,7 @@ public class EndpointParam { [Key] [Column("GUID")] - public long? Guid { get; set; } + public long? Id { get; set; } [Column("ACTIVE")] public bool? Active { get; set; }