export type Settings = {
    address: string;
    branch_location: string | null;
    default_whatsapp: string | null;
    default_whatsapp_greeting: string | null;
    description: string;
    domain: string;
    facebook_pixel: string;
    favicon: string;
    floating_enable: number;
    floating_image: string;
    floating_image_path: string | null;
    floating_url: string;
    google_tag: string;
    id: number;
    instagram_account: string;
    logo: string;
    maintenance_mode: number;
    maps_link: string | null;
    meta_description: string;
    meta_keyword: string;
    meta_title: string;
    name: string;
    panel_1_description: string;
    panel_1_title: string;
    path_favicon: string;
    path_logo: string;
    payment_info: string;
    qrcode: string;
    updated: string;
    updated_by: {
        id: number;
        name: string;
        email: string;
    };
    url: string;
    working_hour: string | null;
};

export interface Branch {
    id:number;
    name:string;
    is_access:boolean;
}