Rev 210 | Rev 410 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.tela_botanica.del.client.modeles;
public class Protocole {
private int id;
private String nom;
public static String ESTHETISME = "Esthetisme";
public static String IDENTIFICATION_AUTOMATIQUE = "Identification automatique";
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getNom() {
return nom;
}
public void setNom(String nom) {
this.nom = nom;
}
}