Files
lucent-laravel/src/Schema/Sidebar/View/ItemData.php
T
2024-03-20 01:57:17 +02:00

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,
)
{
}
}