import { ConversationQueueInfo } from "../Conversations/Queue"; export interface QueueParticipation { spaceId: string; userId: string; queueId: string; authorized: boolean; active: boolean; updatedAt: Date; updatedByUserId?: string; } export interface QueueParticipationDto { queueId: string; authorized: boolean; active: boolean; updatedAt: Date; queue?: ConversationQueueInfo | null; }