// Fichier JScript

var ClBienItem = function()
{
	//	référence
	this.BienRef = "";
	
	//	agence
	this.AgenceNom = "";
	
    //  type de transaction
    this.TypeTransaction = "";
    
    //  type de bien
    this.TypeBien = "";
    
    //  prix
    this.BienPrix = "";
    
    //  surface
    this.BienSurface = "";
    
    //  ville
    this.BienVille = "";
    
    //  liste des photos
    this.ListPhotos = new Array();
}

/* ************************************************************************* */

