From 5607b668a2edf487e360d0155e39d2cb6ce47a86 Mon Sep 17 00:00:00 2001 From: nh805942 Date: Thu, 12 Sep 2019 15:14:17 +0200 Subject: [PATCH] Classe Reponse --- NGCC/src/config/Reponse | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 NGCC/src/config/Reponse diff --git a/NGCC/src/config/Reponse b/NGCC/src/config/Reponse new file mode 100644 index 0000000..7a5cccd --- /dev/null +++ b/NGCC/src/config/Reponse @@ -0,0 +1,18 @@ +package config; + +public class Reponse { + private String intitulé; + private boolean juste= false; + public String getIntitulé() { + return intitulé; + } + public void setIntitulé(String intitulé) { + this.intitulé = intitulé; + } + public boolean isJuste() { + return juste; + } + public void setJuste(boolean juste) { + this.juste = juste; + } +}