export interface MyFollowing {
    responseCode: string;
    message:      string;
    follower:     Following[];
    status:       string;
}

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