package Model;

public class nomenclature {
	private int niveau;
	private int code;
	private String libelle;
	private int quantite;
	
	 public nomenclature( int n, int c, String l, int q){
		 this.niveau=n;
		 this.code=c;
		 this.libelle=l;
		 this.quantite=q;
	 }
}
