Files
ai-web/app/Enums/CrawlAlertSeverity.php

15 lines
204 B
PHP
Raw Permalink Normal View History

2026-02-18 12:56:36 +08:00
<?php
declare(strict_types=1);
namespace App\Enums;
enum CrawlAlertSeverity: string
{
case Info = 'info';
case Warning = 'warning';
case Error = 'error';
case Critical = 'critical';
}