<?php declare(strict_types=1);

namespace App\Engine\Inertia\Frontend\ViewModels;

readonly class UpcomingEventTileViewModel
{

    public function __construct(
        public string $title,
        public string $coverImagePictureTag,
        public string $summary,
        public string $link,
    ) {
    }

}