mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 06:20:09 +00:00
22 lines
345 B
PHP
22 lines
345 B
PHP
<?php
|
|
|
|
namespace App\Settings;
|
|
|
|
use Spatie\LaravelSettings\Settings;
|
|
|
|
class ThresholdSettings extends Settings
|
|
{
|
|
public bool $absolute_enabled;
|
|
|
|
public ?float $absolute_download;
|
|
|
|
public ?float $absolute_upload;
|
|
|
|
public ?float $absolute_ping;
|
|
|
|
public static function group(): string
|
|
{
|
|
return 'threshold';
|
|
}
|
|
}
|