| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- class MailboxFolder {
- private $id = NULL;
- private $folderName = NULL;
- private $mailboxId = NULL;
- private $labelId = NULL;
- public function __construct($id, $folderName, $mailboxId, $labelId) {
- $this->id = $id;
- $this->folderName = $folderName;
- $this->mailboxId = $mailboxId;
- $this->labelId = $labelId;
- }
- public function getId() {
- return $this->id;
- }
- public function getFolderName() {
- return $this->folderName;
- }
- public function getMailboxId() {
- return $this->mailboxId;
- }
- public function getLabelId() {
- return $this->labelId;
- }
- }
|