package src.n106063;

public class Informacoes {
    private String tele;

    public Informacoes(String tele){
        this.tele=tele;    
    }
    public String getTele() {return tele;}
    
    public void setTele(String novoTele) {
        this.tele = novoTele;
}

@Override
    public String toString() {
        return ("Contacto telefónico: "+tele );
    }

}