summaryrefslogtreecommitdiff
path: root/tests/unit/SQLMap/domain/D.php
blob: 5d1baabd5693b04ca6a9bd8f8d10c28ac49b07e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

class D
{
	private $_ID='';
	private $_Libelle='';

	public function getID(){ return $this->_ID; }
	public function setID($value){ $this->_ID = $value; }

	public function getLibelle(){ return $this->_Libelle; }
	public function setLibelle($value){ $this->_Libelle = $value; }

}

?>