1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace LaravelUi5\OData\Vocabularies\Authorization\V1;
6:
7: /**
8: * Base type for all Authorization types
9: */
10: final readonly class Authorization
11: {
12: public function __construct(
13: public readonly string $name,
14: public readonly ?string $description = null,
15: ) {}
16: }
17: