<?php namespace App\KommaApp\Kms\Core\Entities;
/**
*
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
class KmsHierarchicalListItemEntity extends KmsEntity
{
public $id = 0;
public $name;
public $slug;
public $route = '';
public $lft;
public $rgt;
public function getName()
{
return isset($this->name)? $this->name : '\\';
}
}