Rename ActionId to Id across the codebase
Updated the `ActionId` property to `Id` in `RecActionDto` and `RecAction` classes for consistency. Reflected this change in all relevant files, including log messages, property assignments, and database column mappings. Standardized naming conventions to improve code clarity and maintainability.
This commit is contained in:
@@ -15,7 +15,7 @@ namespace ReC.Domain.Entities;
|
||||
public class RecAction
|
||||
{
|
||||
[Column("ACTION_ID")]
|
||||
public required long ActionId { get; set; }
|
||||
public required long Id { get; set; }
|
||||
|
||||
[Column("PROFILE_ID")]
|
||||
public long? ProfileId { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user