xref: /web-php/src/Navigation/NavItem.php (revision b62f99f6)
1<?php
2
3namespace phpweb\Navigation;
4
5final readonly class NavItem
6{
7    public function __construct(
8        public string $name,
9        public string $href,
10        public string $id,
11        public ?string $image = null,
12    ) {
13    }
14}
15