<?php declare(strict_types=1);

namespace App\Engine\Inertia;

class MessageViewModel
{
    public const NOTICE_MESSAGE_TYPE = "primary";
    public const SECONDARY_MESSAGE_TYPE = "secondary";
    public const SUCCESS_MESSAGE_TYPE = "success";
    public const ERROR_MESSAGE_TYPE = "danger";
    public const WARNING_MESSAGE_TYPE = "warning";
    public const INFO_MESSAGE_TYPE = "info";

    public function __construct(
        public string $message = "",
        public string $type = self::INFO_MESSAGE_TYPE,
    ) {
    }

}