
public class Livre {
	
	protected String genre;
	protected String auteur;
	protected String titre;
	
	
	public Livre(String genre, String auteur, String titre) {
		this.genre = genre;
		this.auteur = auteur;
		this.titre = titre;
	}


	public String getGenre() {
		return genre;
	}



	public String getAuteur() {
		return auteur;
	}



	public String getTitre() {
		return titre;
	}


	
	
	
	

}
