From bb43bfa0645f2884499cd36c66b7753f018ead98 Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 8 Dec 2025 11:04:52 +0100 Subject: [PATCH] Refactor property in RecActionView class Replaced the `ProfileSequence` property with `Sequence` in the `RecActionView` class. Updated the database column mapping from `PROFILE_SEQUENCE` to `SEQUENCE`. This change aligns with updates to the database schema and improves naming consistency. --- src/ReC.Domain/Entities/RecActionView.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ReC.Domain/Entities/RecActionView.cs b/src/ReC.Domain/Entities/RecActionView.cs index 37aef51..5878661 100644 --- a/src/ReC.Domain/Entities/RecActionView.cs +++ b/src/ReC.Domain/Entities/RecActionView.cs @@ -34,8 +34,8 @@ public class RecActionView [MaxLength(20)] public string? ProfileType { get; set; } - [Column("PROFILE_SEQUENCE")] - public byte? ProfileSequence { get; set; } + [Column("SEQUENCE")] + public byte? Sequence { get; set; } [Column("ENDPOINT_ID")] public long? EndpointId { get; set; }