Type Alias FeedbackRoomListResponseDto
FeedbackRoomListResponseDto: {
nextCursor: string | null;
rooms: {
createdAt: string;
id: string;
initiatorId: string | null;
initiatorName: string | null;
isAnonymous: boolean;
lastMessage: string | null;
lastMessageAt: string | null;
unreadCount: number;
updatedAt: string;
}[];
}