Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.tela_botanica.del.client.modeles;
public class MotCle {
private String idMotCle;
private String idImage;
private String motCle;
public MotCle(String idMotCle, String idImage, String motCle) {
super();
this.idMotCle = idMotCle;
this.idImage = idImage;
this.motCle = motCle;
}
public String getIdMotCle() {
return idMotCle;
}
public String getIdImage() {
return idImage;
}
public String getMotCle() {
return motCle;
}
}