namespace ReC.Domain.Entities; /// /// Represents the TBREC_CFG_ENDPOINT_PARAMS table. /// All properties are nullable to provide flexibility on the database side, /// preventing breaking changes if columns are altered to be nullable in production. /// public class EndpointParam { public long? Id { get; set; } public bool? Active { get; set; } public string? Description { get; set; } public short? GroupId { get; set; } public byte? Sequence { get; set; } public string? Key { get; set; } public string? Value { get; set; } public string? AddedWho { get; set; } public DateTime? AddedWhen { get; set; } public string? ChangedWho { get; set; } public DateTime? ChangedWhen { get; set; } }