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:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user