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