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:
2025-12-01 12:30:57 +01:00
parent dc777a04f6
commit de17d398ff
5 changed files with 10 additions and 10 deletions

View File

@@ -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; }