export type IOrganization = {
    id: number
    tagline: string
    title: string
    slug: string
    email: string
    phone: string
    legal_name: string
    short_name: string
    short_code: string
    street_address: string
    city: string
    zip: string
    country: string
    teaser: string
    more_info_text: string
    description: string
    promo_video_url: string
    logo_url: string
    banner_url: string
    website_url: string
    fb_url: string
    instagram_url: string
    category: string
    status: string
}


