blob: 518851e6c83b9ae162f36d676bccef5244da8605 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?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; }
}
|