export interface MyFollowers 
{
    response_code: string,
    message: string,
    follower: Follower[],
    status: string
}

export interface Follower 
{
    follow_id: string,
    from_user: string,
    to_user: string,
    friend_type: string,
    date: string,
    status: string,
    first_name: string,
    last_name: string,
    username: string,
    profile_pic: string,
    follow_user_id: string,
    is_follow: string,
}


