<?php declare(strict_types=1);

namespace App\Engine\Inertia\Frontend\ViewModels;

readonly class PageContentViewModel
{

    public function __construct(
        protected ?string $title = null,
        protected ?string $htmlContent = null,
    ) {
    }

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

    public function getHtmlContent(): ?string
    {
        return $this->htmlContent;
    }

}