Files
agologum/client/src/models/User.ts
Blitblank 661bb03d1d
Some checks failed
Build and Deploy Frontend / build-and-deploy (push) Failing after 4s
Build and Deploy API / build-and-deploy (push) Successful in 12s
preliminary frontend for ther auth api
2026-03-17 22:30:59 -05:00

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;
}