mailboxfolder.inc.php 548 B

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