TenantAtlas/apps/platform/app/Support/Tenants/TenantActionFamily.php
2026-04-08 09:33:16 +02:00

14 lines
273 B
PHP

<?php
declare(strict_types=1);
namespace App\Support\Tenants;
enum TenantActionFamily: string
{
case Neutral = 'neutral';
case OnboardingWorkflow = 'onboarding_workflow';
case LifecycleManagement = 'lifecycle_management';
case Readiness = 'readiness';
}