<?php declare(strict_types=1);

namespace App\Engine\Inertia\Frontend\ViewModels;

readonly class UpcomingEventDetailViewModel
{

    public function __construct(
        public string $title,
        public string $mainImagePictureTag,
        public string $htmlContent,
    ) {
    }

}