<?php declare(strict_types=1);

namespace App\Engine\Inertia\Frontend\ViewModels;

final readonly class GeneralMetadataSectionViewModel
{

    public function __construct(
        public string $title = "",
        public string $description = "",
        public string $ogImage = "",
    ) {
    }

}