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

class Document
{
	private $_ID='';
	private $_Title='';

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

	public function getTitle(){ return $this->_Title; }
	public function setTitle($value){ $this->_Title = $value; }

}

?>