Type Alias FeedbackRoomListResponseDto

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