24 lines
384 B
PHP
Raw Normal View History

<?php
namespace BusinessLogic\Navigation;
class CustomNavElement {
/* @var $id int*/
public $id;
2017-05-11 22:00:51 -04:00
/* @var $text string[] */
public $text;
2017-05-11 22:00:51 -04:00
/* @var $subtext string[]|null */
public $subtext;
/* @var $imageUrl string|null */
public $imageUrl;
/* @var $fontIcon string|null */
public $fontIcon;
/* @var $place int */
public $place;
}