Files
hipmi-mobile/types/User.ts
Bagasbanuna02 e1039a5744 Add:
- context/
- hook/
- types/

### No Issue
2025-08-19 15:25:07 +08:00

18 lines
338 B
TypeScript

export type TUser = "User" | "Admin" | "Super Admin";
export interface IMasterUserRole {
id: string;
name: TUser;
}
export interface IUser {
id: string;
username: string;
nomor: string;
active: boolean;
createdAt: string | null;
updatedAt: string | null;
masterUserRoleId: string;
MasterUserRole: IMasterUserRole;
}