Subversion Repositories eFlore/Applications.cel

Rev

Rev 1565 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1565 jpm 1
<?php
2
/**
3
* PHP Version 5
4
*
5
* @category  PHP
6
* @package   jrest
7
* @author    Jean-Pascal MILCENT <jpm@tela-botanica.org>
8
* @copyright 2010 Tela-Botanica
9
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
10
* @version   SVN: <svn_id>
11
* @link      /doc/jrest/
12
*/
13
 
14
/**
15
* Classe conteneur servant à gérer les infos des champs étendus.
16
*
17
*/
18
class ChampEtendu {
19
	public $id = '';
20
	public $cle = '';
21
	public $valeur = '';
22
}
23
?>