You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mods-for-HESK-Netsyms/api/BusinessLogic/Navigation/CustomNavElement.php

24 lines
396 B
PHP

<?php
namespace BusinessLogic\Navigation;
class CustomNavElement {
/* @var $id int*/
public $id;
/* @var $text string[string] */
public $text;
/* @var $subtext string[string]|null */
public $subtext;
/* @var $imageUrl string|null */
public $imageUrl;
/* @var $fontIcon string|null */
public $fontIcon;
/* @var $place int */
public $place;
}