
public class AutresInterets {
	
	protected String libelle;
	protected String descriptif;
	
	
	public AutresInterets(String libelle, String descriptif) {
		this.libelle = libelle;
		this.descriptif = descriptif;
	}


	public String getLibelle() {
		return libelle;
	}


	public String getDescriptif() {
		return descriptif;
	}
	
	
	
	

}
