<?php declare(strict_types=1);

namespace App\Engine\Inertia\Frontend\ViewModels;

readonly class UpcomingEventRowViewModel
{

    public function __construct(
        public string  $title,
        public string  $rowSummary,
        public ?string $link,
    ) {
    }

}