export interface User {
  id?: string | number; // uuid or number-string
  email: string;
  password: string;
}
