mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-08 19:25:10 -05:00
- Modify storage driver name and location - Add option to select patchline - Add option to mark file for delete - Add option to delete file from the server - Small UI adjustments to new added options
10 lines
102 B
PHP
10 lines
102 B
PHP
<?php
|
|
|
|
namespace App\Enums\Launcher;
|
|
|
|
enum FileAction: int
|
|
{
|
|
case DELETE = 0;
|
|
case ADD = 1;
|
|
}
|