| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Ui\V1; |
| 6: | |
| 7: | final readonly class SelectionPresentationVariantType |
| 8: | { |
| 9: | public function __construct( |
| 10: | public readonly mixed $selectionVariant, |
| 11: | public readonly mixed $presentationVariant, |
| 12: | public readonly ?string $iD = null, |
| 13: | public readonly ?string $text = null, |
| 14: | ) {} |
| 15: | } |
| 16: |