package gui_easypark;


public class SocioVIP {
	String nome;
	String CPF;
	String telefone;
	int loginCredencial;
	
	public SocioVIP(String nome, String CPF, String telefone, int loginCredencial) {
		// TODO Auto-generated constructor stub
		this.nome = nome;
		this.CPF = CPF;
		this.telefone = telefone;
		this.loginCredencial = loginCredencial;
	}

	public SocioVIP() {
		// TODO Auto-generated constructor stub
	}public String getNome(){
            return nome;
        }


}
