ContentListResponseDto: {
    contents: {
        authorName: string | null;
        authorProfileId: string | null;
        canManage: boolean;
        createdAt: string;
        description: string;
        id: string;
        ready: boolean;
        title: string;
        type:
            | "VIDEO"
            | "URL_VIDEO"
            | "QUIZ"
            | "DOCUMENT"
            | "SURVEY"
            | "LIVE"
            | "ASSIGNMENT"
            | "GROUP_ASSIGNMENT"
            | "GROUP_PEER_ASSESSMENT";
        updatedAt: string;
        visibility: "PRIVATE" | "SHARED" | "PUBLIC";
    }[];
    nextCursor: string | null;
}