export interface User { id: number; email: string; password?: string; // Should be handled securely, not sent to client name: string; }