package com.example.dto.quickreplies; import com.fasterxml.jackson.annotation.JsonProperty; public record QuestionDTO( @JsonProperty("titulo") String titulo, @JsonProperty("descripcion") String descripcion, @JsonProperty("respuesta") String respuesta ) {}