src/JanusHercules/Shared/Presentation/Entity/NavigationItem.php line 5

Open in your IDE?
  1. <?php
  2. namespace JanusHercules\Shared\Presentation\Entity;
  3. readonly class NavigationItem
  4. {
  5. public function __construct(
  6. public ?string $type,
  7. public ?string $label,
  8. public ?string $iconLink,
  9. public ?string $url,
  10. ) {
  11. }
  12. }