namespace ReC.Application.Common.Procedures.UpdateProcedure.Dto; public record UpdateEndpointDto { public bool? Active { get; set; } public string? Description { get; set; } public string? Uri { get; set; } }