blob: 682f8eb3d412a97115202d572966ffea4f300007 (
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; }
}
?>
|