// models are the data objects stored in the database. models defined here must match models defined in api/models export interface User { id: number; name: string; email: string; password: string; }