15 lines
238 B
PHP
15 lines
238 B
PHP
<?php
|
|
|
|
namespace Lucent\Schema\Sidebar\View;
|
|
|
|
class ItemData
|
|
{
|
|
public function __construct(
|
|
public string $label,
|
|
public string $href,
|
|
public bool $isActive,
|
|
public bool $isLink,
|
|
)
|
|
{
|
|
}
|
|
} |