Introduced the `EndpointParam` class to represent the `TBREC_CFG_ENDPOINT_PARAMS` table in the database. - Added `using` directives for data annotations and table mapping. - Defined properties to map to table columns, all nullable for flexibility. - Annotated the class with `[Table]` and properties with `[Column]` attributes. - Marked `Guid` as the primary key using the `[Key]` attribute. - Documented the class with a summary explaining its purpose and design. This change facilitates ORM integration and ensures schema flexibility.
ReC
Description
Languages
C#
100%