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; + } +}