TenantAtlas/app/Support/Ui/OperatorExplanation/TrustworthinessLevel.php
2026-03-24 12:23:07 +01:00

14 lines
284 B
PHP

<?php
declare(strict_types=1);
namespace App\Support\Ui\OperatorExplanation;
enum TrustworthinessLevel: string
{
case Trustworthy = 'trustworthy';
case LimitedConfidence = 'limited_confidence';
case DiagnosticOnly = 'diagnostic_only';
case Unusable = 'unusable';
}