correction README < et > dans les list

This commit is contained in:
Rochas
2025-09-26 18:38:06 +02:00
parent 1139a6ec7e
commit bc5a0e488d

View File

@@ -1,6 +1,8 @@
# Template de projet pour le TP JPA UniR
```mermaid
classDiagram
Utilisateur "*" -- "*" Session
Session "*" -- "1" Quizz
@@ -35,19 +37,19 @@ classDiagram
}
class Reponse{
- id : int
reponses : ArrayList<String>
reponses : List&lt;String&gt;
getId()int
setId(id:int)void
getReponse()ArrayList<String>
setReponse(reponse:ArrayList<String> )void
getReponse()List&lt;String&gt;
setReponse(reponse:List&lt;String&gt; )void
}
class Choix{
- id : int
choix : List<String>
choix : List&lt;String&gt;
getId()int
setId(id:int)void
getChoix()List<String>
setChoix(choix:List<String>)void
getChoix()List&lt;String&gt;
setChoix(choix:List&lt;String&gt;)void
}
class ReponseCourte{
- id : int