package org.perpustakaanku.model;


public class Peminjaman {

	String username,judul,status;

	public Peminjaman() {
		super();
	}

	public Peminjaman(String username, String judul,String status) {
		super();
		this.username = username;
		this.judul = judul;
		this.status = status;
	}

	/**
	 * @return the status
	 */
	public String getStatus() {
		return status;
	}

	/**
	 * @param status the status to set
	 */
	public void setStatus(String status) {
		this.status = status;
	}

	/**
	 * @return the username
	 */
	public String getUsername() {
		return username;
	}

	/**
	 * @param username the username to set
	 */
	public void setUsername(String username) {
		this.username = username;
	}

	/**
	 * @return the judul
	 */
	public String getJudul() {
		return judul;
	}

	/**
	 * @param judul the judul to set
	 */
	public void setJudul(String judul) {
		this.judul = judul;
	}
}