Files
FocusAgenda/src/main/java/com/agendaestudantil/dto/RespostaEstudanteDTO.java
2026-03-31 19:21:11 -03:00

11 lines
165 B
Java

package com.agendaestudantil.dto;
public record RespostaEstudanteDTO(
String id,
String nome,
String email,
String curso,
Integer periodo
) {
}