Files
Jobhero_front/src/app/models/user.ts
2026-01-13 21:02:23 -06:00

9 lines
148 B
TypeScript

export class User {
id: number;
name: string;
email: string;
phone: string;
phone_verified_at: string;
reported: boolean;
}