export interface BlockUserList 
{
    response_code: string,
    message: string,
    status: string,
    user_blocklist: BlockList[]
}

export interface BlockList 
{
    user_id: string,
    first_name: string,
    last_name: string,
    username: string,
    email: string,
    country_code: string,
    phone: string,
    login_type: string,
    is_block: string,
    profile_pic: string
}
