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