First commit

This commit is contained in:
2026-01-13 21:02:23 -06:00
commit 054f45b5bd
403 changed files with 44137 additions and 0 deletions

8
src/app/models/user.ts Normal file
View File

@@ -0,0 +1,8 @@
export class User {
id: number;
name: string;
email: string;
phone: string;
phone_verified_at: string;
reported: boolean;
}