From 9705bd358f90ac1e2a4842ce35ddc2524192da28 Mon Sep 17 00:00:00 2001 From: visoulier Date: Wed, 3 Apr 2024 09:50:36 +0200 Subject: [PATCH] fix affichage de temps d'affichage du socre manquant sur le dto de partiekahoot status --- .../sae/dto/partieKahoot/PartieKahootStatusDTO.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SpringBootProject/src/main/java/fr/iut/sciencequest/sae/dto/partieKahoot/PartieKahootStatusDTO.java b/SpringBootProject/src/main/java/fr/iut/sciencequest/sae/dto/partieKahoot/PartieKahootStatusDTO.java index 403da25..90a9459 100644 --- a/SpringBootProject/src/main/java/fr/iut/sciencequest/sae/dto/partieKahoot/PartieKahootStatusDTO.java +++ b/SpringBootProject/src/main/java/fr/iut/sciencequest/sae/dto/partieKahoot/PartieKahootStatusDTO.java @@ -6,6 +6,7 @@ import jakarta.validation.constraints.NotNull; import lombok.*; import org.springframework.hateoas.RepresentationModel; +import java.util.Calendar; import java.util.List; @@ -19,4 +20,6 @@ public class PartieKahootStatusDTO extends RepresentationModel scores; + + private Calendar tempsAffichageScore; }