// dto/service-result.dto.ts export interface ServiceResult { success: boolean; data?: T; error?: string; }