<?php declare(strict_types=1);

namespace App\Engine\Inertia\ViewModels\Form;

class FormViewModel
{

    /**
     * param array<\App\Engine\Inertia\MessageViewModel>
     */
    public function __construct(
        public string  $id = "",
        public array   $messages = [],
        public ?string $renderedForm = null,
    ) {
    }

}