package beans;

public class Korisnik {
    private String user;
    private String pass;
    private String ime;
    private String prezime;
    private String tel;
    private String tip;

    public Korisnik(String user, String pass, String ime, String prezime, String tel, String tip) {
        this.user = user;
        this.pass = pass;
        this.ime = ime;
        this.prezime = prezime;
        this.tel = tel;
        this.tip = tip;
    }

    public String getUser() {
        return user;
    }

    public void setUser(String user) {
        this.user = user;
    }

    public String getPass() {
        return pass;
    }

    public void setPass(String pass) {
        this.pass = pass;
    }

    public String getIme() {
        return ime;
    }

    public void setIme(String ime) {
        this.ime = ime;
    }

    public String getPrezime() {
        return prezime;
    }

    public void setPrezime(String prezime) {
        this.prezime = prezime;
    }

    public String getTel() {
        return tel;
    }

    public void setTel(String tel) {
        this.tel = tel;
    }

    public String getTip() {
        return tip;
    }

    public void setTip(String tip) {
        this.tip = tip;
    }
    
}
