<?php declare(strict_types=1);

namespace App\Engine\Inertia\Frontend\ViewModels;

final readonly class HomeHeroSectionViewModel
{

    public function __construct(
        public string $desktopImage,
        public string $mobileImage,
    ) {
    }

}