Files
vito/app/Enums/BackupFileStatus.php
Saeed Vaziry 131b828807 Plugins base (#613)
* wip

* wip

* cleanup

* notification channels

* phpstan

* services

* remove server types

* refactoring

* refactoring
2025-06-14 14:35:18 +02:00

21 lines
356 B
PHP

<?php
namespace App\Enums;
final class BackupFileStatus
{
const string CREATED = 'created';
const string CREATING = 'creating';
const string FAILED = 'failed';
const string DELETING = 'deleting';
const string RESTORING = 'restoring';
const string RESTORED = 'restored';
const string RESTORE_FAILED = 'restore_failed';
}