export interface AllUsers {
    responseCode: string;
    message:      string;
    tag_users:     TagUser[];
    status:       string;
}

export interface TagUser {
    to_user: string;
    is_verified: any;
    user_id:          string;
    first_name:       string;
    last_name:        string;
    email:           string;
    login_type:       string;
    username:        string;
    mobile:          string;
    email_verified_at: string;
    country_code:     string;
    device_token:     string;
    status:          string;
    address:         string;
    display_name:     string;
    profile_pic:      string;
}
