namespace ReC.Application.Common.Procedures.UpdateProcedure.Dto; public record UpdateEndpointParamsDto { 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; } }