ctrlpanel/app/Settings/ServerSettings.php
2023-02-24 14:02:28 +01:00

19 lines
296 B
PHP

<?php
namespace app\Settings;
use Spatie\LaravelSettings\Settings;
class ServerSettings extends Settings
{
public int $allocation_limit;
public bool $creation_enabled;
public bool $enable_upgrade;
public static function group(): string
{
return 'server';
}
}