function ObjParametres()
{
    this.div = "";
    this.control = "";
    this.membre = "";
    this.valeur = "";
    this.module = "";
    this.action = "";
    this.donnees = "";
    
    this.ToJsonString = function()
    {
        return [ { div:this.div,
                   control:this.control,
                   membre:this.membre,
                   valeur:this.valeur,
                   module:this.module,
                   action:this.action,
                   donnees:this.donnees} ];
    }
}
