package TPnote;

public class Habitation {

	private String Adresse;
	private double Surface;
	private int Prix;
	
	public Habitation(String adresse, double surface, int prix) {
		this.Adresse=adresse;
		this.Surface=surface;
		this.Prix=prix;
	}

	public String getAdresse() {
		return Adresse;
	}

	public double getSurface() {
		return Surface;
	}

	public int getPrix() {
		return Prix;
	}
	
	public String toString() {
		return this.getAdresse()+" ["+this.getSurface()+" m²] : "+this.getPrix()+" €";
	}

}
