| 123456789101112131415161718192021222324252627282930 |
- <?php
- class Document {
- private $id = NULL;
- private $fileName = NULL;
- private $path = NULL;
- private $labelId = NULL;
- public function __construct($id, $fileName, $path, $labelId) {
- $this->id = $id;
- $this->fileName = $fileName;
- $this->path = $path;
- $this->labelId = $labelId;
- }
- public function getId() {
- return $this->id;
- }
- public function getFileName() {
- return $this->fileName;
- }
- public function getPath() {
- return $this->path;
- }
- }
- ?>
|