<?php

namespace Inertia\Support;

class Header
{
    public const INERTIA = 'X-Inertia';

    public const ERROR_BAG = 'X-Inertia-Error-Bag';

    public const LOCATION = 'X-Inertia-Location';

    public const VERSION = 'X-Inertia-Version';

    public const PARTIAL_COMPONENT = 'X-Inertia-Partial-Component';

    public const PARTIAL_ONLY = 'X-Inertia-Partial-Data';

    public const PARTIAL_EXCEPT = 'X-Inertia-Partial-Except';

    public const RESET = 'X-Inertia-Reset';
}
