remove obsolete code

This commit is contained in:
Audrey Jensen 2023-07-19 20:38:42 +00:00
parent c52570c16c
commit 5ec1604443

View File

@ -1,13 +0,0 @@
<?php
namespace jv\intranet\Types;
class NavbarItem
{
public $title;
public $url;
public function __construct($_title = "N/A", $_url = "N/A")
{
$this->title = $_title;
$this->url = $_url;
return $this;
}
}