export interface IQuickResponse { id: string; spaceId: string; categoryId: string; categoryName: string; title: string; bodyIM: string; bodyHTML: string; isTemplate: boolean; templateId?: string | null; templateName?: string | null; templateVariables: string[]; createdAt: Date; createdBy: string; updatedAt?: Date; updatedBy?: string; deletedAt?: Date; deletedBy?: string; } export interface IQuickResponseCategory { id: string; spaceId: string; name: string; isPublic: boolean; sharedGroupIds: string[]; sharedUserIds: string[]; sharedWith: string[]; createdAt: Date; createdBy: string; updatedAt?: Date; updatedBy?: string; deletedAt?: Date; deletedBy?: string; }