<?php declare(strict_types=1);

namespace App\Engine\VisitorsNotification;

readonly class VisitorsNotificationViewModel
{

    public function __construct(
        private int    $id,
        private int    $priority,
        private string $title,
        private string $text,
        private string $type,
    ) {
    }

    public function getId(): int
    {
        return $this->id;
    }

    public function getPriority(): int
    {
        return $this->priority;
    }

    public function getTitle(): string
    {
        return $this->title;
    }

    public function getText(): string
    {
        return $this->text;
    }

    public function getType(): string
    {
        return $this->type;
    }

}