from pydantic import BaseModel from app.models.friend import Friend class FriendListDTO(BaseModel): friends: list[Friend] external_friends: list[Friend]