TenantAtlas/app/Support/Tenants/TenantActionFamily.php

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';
}