opsdash-app/opsdash/lib/Service/Validation/NumberConstraints.php
2025-10-27 16:03:31 +07:00

17 lines
357 B
PHP

<?php
declare(strict_types=1);
namespace OCA\Opsdash\Service\Validation;
class NumberConstraints {
public function __construct(
public readonly ?float $min = null,
public readonly ?float $max = null,
public readonly ?float $step = null,
public readonly ?int $precision = null,
public readonly bool $allowEmpty = false,
) {
}
}