mailboxfolder.inc.php 673 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. class MailboxFolder {
  3. private $id = NULL;
  4. private $folderName = NULL;
  5. private $mailboxId = NULL;
  6. private $labelId = NULL;
  7. public function __construct($id, $folderName, $mailboxId, $labelId) {
  8. $this->id = $id;
  9. $this->folderName = $folderName;
  10. $this->mailboxId = $mailboxId;
  11. $this->labelId = $labelId;
  12. }
  13. public function getId() {
  14. return $this->id;
  15. }
  16. public function getFolderName() {
  17. return $this->folderName;
  18. }
  19. public function getMailboxId() {
  20. return $this->mailboxId;
  21. }
  22. public function getLabelId() {
  23. return $this->labelId;
  24. }
  25. }