Classe Reponse

This commit is contained in:
nh805942 2019-09-12 15:14:17 +02:00
parent 2f1f01bdf4
commit 5607b668a2

18
NGCC/src/config/Reponse Normal file
View File

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