| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Ui\V1; |
| 6: | |
| 7: | /** |
| 8: | * Interval parameter formed with a 'from' and a 'to' property |
| 9: | */ |
| 10: | final readonly class IntervalParameter |
| 11: | { |
| 12: | public function __construct( |
| 13: | public readonly string $propertyNameFrom, |
| 14: | public readonly mixed $propertyValueFrom, |
| 15: | public readonly string $propertyNameTo, |
| 16: | public readonly mixed $propertyValueTo, |
| 17: | ) {} |
| 18: | } |
| 19: |