
public class Musique {
	
	protected String genre;
	protected String artiste;
	protected String album;
	protected String titre;
	
	
	public Musique(String genre, String artiste, String album, String titre) {
		this.genre = genre;
		this.artiste = artiste;
		this.album = album;
		this.titre = titre;
	}


	public String getGenre() {
		return genre;
	}


	public void setGenre(String genre) {
		this.genre = genre;
	}


	public String getArtiste() {
		return artiste;
	}


	public void setArtiste(String artiste) {
		this.artiste = artiste;
	}


	public String getAlbum() {
		return album;
	}


	public void setAlbum(String album) {
		this.album = album;
	}


	public String getTitre() {
		return titre;
	}


	public void setTitre(String titre) {
		this.titre = titre;
	}
	
	
	

}
