Rename class VwRecAction to Action

Renamed the class `VwRecAction` to `Action` to simplify the name
and better align with naming conventions. The `[Table]` attribute
mapping to `VWREC_ACTION` in the `dbo` schema remains unchanged.
Class properties such as `ActionId` and `ProfileId` are unaffected
by this change.
This commit is contained in:
2025-11-25 10:32:17 +01:00
parent c33144ad7b
commit 304970f47a

View File

@@ -12,7 +12,7 @@ namespace ReC.Domain.Entities;
/// requiring immediate code updates.
/// </summary>
[Table("VWREC_ACTION", Schema = "dbo")]
public class VwRecAction
public class Action
{
[Column("ACTION_ID")]
public long? ActionId { get; set; }