Terminado todos os controladores e correção de bugs e segurança

This commit is contained in:
2026-03-10 20:47:04 -03:00
commit f131855d84
51 changed files with 2294 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package com.agendaestudantil.dto;
public record RespostaDisciplinaDTO(
String id,
String estudanteId,
String nome,
String professor,
String sala,
String cor
) {}