ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
MailDto.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
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