diff --git a/README.md b/README.md index 86db148..1783a32 100644 --- a/README.md +++ b/README.md @@ -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 + reponses : List<String> getId()int setId(id:int)void - getReponse()ArrayList - setReponse(reponse:ArrayList )void + getReponse()List<String> + setReponse(reponse:List<String> )void } class Choix{ - id : int - choix : List + choix : List<String> getId()int setId(id:int)void - getChoix()List - setChoix(choix:List)void + getChoix()List<String> + setChoix(choix:List<String>)void } class ReponseCourte{ - id : int