Files
int-layer/src.bak/main/java/com/example/dto/quickreplies/QuickReplyDTO.java
2026-02-20 08:42:45 +00:00

10 lines
390 B
Java

package com.example.dto.quickreplies;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
public record QuickReplyDTO(
@JsonProperty("header") String header,
@JsonProperty("body") String body,
@JsonProperty("button") String button,
@JsonProperty("header_section") String headerSection,
@JsonProperty("preguntas") List<QuestionDTO> preguntas
) {}