
public class Parcours {
	
	protected String ville;
	protected String pays;
	protected String periode;
	
	public Parcours(String ville, String pays, String periode) {
		this.ville = ville;
		this.pays = pays;
		this.periode = periode;
	}

	public String getVille() {
		return ville;
	}

	public String getPays() {
		return pays;
	}

	public String getPeriode() {
		return periode;
	}
	
	
	
	

}
