1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace LaravelUi5\OData\Protocol\Planning;
6:
7: use LaravelUi5\OData\Edm\Contracts\Property\PropertyInterface;
8:
9: final readonly class PropertySelectItem extends SelectItem
10: {
11: public function __construct(public readonly PropertyInterface $property) {}
12: }
13: