/** * Response DTO for user preferences */ export interface PreferencesResponseDto { id: string; userId: string; theme: string; locale: string; timezone: string | null; settings: Record; updatedAt: Date; }