refactored out of src packages
This commit is contained in:
11
react-auth/models.ts
Normal file
11
react-auth/models.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
export interface AuthUser {
|
||||
// meta fields
|
||||
_id?: string | null;
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
|
||||
// model fields
|
||||
username: string;
|
||||
email: string;
|
||||
is_active: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user