export interface VisitorsNotificationEntity {
    id: number;
    priority: number;
    title: string;
    text: string;
    enabled: boolean;
    location: PhpEnum<VisitorsNotificationLocationType>;
    type: PhpEnum<VisitorsNotificationTypeType>;
}

type VisitorsNotificationLocationType = "homepage" | "everywhere";
type VisitorsNotificationTypeType = "info" | "warning" | "critical";