import {PageEntity} from "@/types/modules/page";

export interface NavigationEntity {
    id: number;
    section: PhpEnum;
    priority: number;
    title: string;
    url: string;
    enabled: boolean;
    targetBlank: boolean;
    page: null | PageEntity;
    parent: null | NavigationEntity;
}
