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.
This commit is contained in:
tekh 2025-12-01 15:25:33 +01:00
parent 8c47082c7f
commit 773b939a5c

View File

@ -13,7 +13,7 @@ public class EndpointParam
{ {
[Key] [Key]
[Column("GUID")] [Column("GUID")]
public long? Guid { get; set; } public long? Id { get; set; }
[Column("ACTIVE")] [Column("ACTIVE")]
public bool? Active { get; set; } public bool? Active { get; set; }