export interface SystemInfo {
    copyright?: string;
    faviconUrl?: string;
    gateway?: string;
    maxLogoUrl?: string;
    miniLogoUrl?: string;
    profileList?: Array<SystemMenu>;
    projectName?: string;
    tucaoUrl?: string;
    headerStyle?: Array<headerStyle>;
    showAllMenu?: boolean;
    pageTitlePattern?: string;
    clientEnd?: ClientEnd;
}
export interface SystemMenu {
    name?: string;
    url?: string;
}
export interface headerStyle {
    label?: string;
    value?: string;
}
export interface ClientEnd {
    color?: string;
    sloganUrl?: string;
}
