10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
|
|
// 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;
|
|
}
|