vito/app/Enums/SshKeyStatus.php
2024-03-17 12:26:48 +01:00

13 lines
149 B
PHP

<?php
namespace App\Enums;
final class SshKeyStatus
{
const ADDING = 'adding';
const ADDED = 'added';
const DELETING = 'deleting';
}