ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
MailDto.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 class MailDto
24 {
25  public function __construct(private readonly int $mail_id, private readonly ?string $mail_subject)
26  {
27  }
28 
29  public function getMailId(): int
30  {
31  return $this->mail_id;
32  }
33 
34  public function getMailSubject(): ?string
35  {
36  return $this->mail_subject;
37  }
38 }
__construct(private readonly int $mail_id, private readonly ?string $mail_subject)
Definition: MailDto.php:25