<?php

namespace Inertia\Ssr;

class Response
{
    /**
     * @var string
     */
    public $head;

    /**
     * @var string
     */
    public $body;

    /**
     * Prepare the Inertia Server Side Rendering (SSR) response.
     */
    public function __construct(string $head, string $body)
    {
        $this->head = $head;
        $this->body = $body;
    }
}
