This commit is contained in:
2025-04-06 18:30:25 +01:00
parent 2d15f87f42
commit 319520c650
5 changed files with 91 additions and 0 deletions

13
app/Enums/NetworkType.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
namespace App\Enums;
use App\Enums\Concerns\Arrayable;
enum NetworkType: string
{
use Arrayable;
case EXTERNAL = 'external'; // managed by provider
case INTERNAL = 'internal'; // managed by keystone
}