Profile entity class for database mapping
Introduced a new `Profile` class in the `ReC.Domain.Entities` namespace to represent the `TBREC_CFG_PROFILE` table in the `dbo` schema. - Added Entity Framework annotations to map properties to database columns. - Defined properties for fields such as `Id`, `Active`, `Type`, `ProfileName`, `Description`, and others. - Used nullable types for all properties to allow null values. - Marked `Id` as the primary key with auto-generation enabled. This change enables ORM support for managing profile-related data.
ReC
Description
Languages
C#
100%