| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- class Document {
- private $id = NULL;
- private $fileName = NULL;
- private $path = NULL;
- private $labelId = NULL;
- private $draft = NULL;
- private $created = NULL;
- private $lastChange = NULL;
- private $type = NULL;
- private $mailUid = NULL;
- public function __construct($id, $fileName, $path, $labelId, $draft, $created, $lastChange, $type, $mailUid) {
- $this->id = $id;
- $this->fileName = $fileName;
- $this->path = $path;
- $this->labelId = $labelId;
- $this->draft = $draft;
- $this->created = $created;
- $this->lastChange = $lastChange;
- $this->type = $type;
- $this->mailUid = $mailUid;
- }
- public function getId() {
- return $this->id;
- }
- public function getFileName() {
- return $this->fileName;
- }
- public function getPath() {
- return $this->path;
- }
- public function getDraft() {
- return $this->draft;
- }
- public function getCreated() {
- return $this->created;
- }
- public function getLastChange() {
- return $this->lastChange;
- }
- public function getType() {
- return $this->type;
- }
- public function getMailUid() {
- return $this->mailUid;
- }
- }
- ?>
|