refactored out of src packages

This commit is contained in:
2026-04-04 12:55:10 +05:30
parent 8a285bbdbe
commit 9871dac5c2
9 changed files with 0 additions and 0 deletions

11
react-auth/models.ts Normal file
View 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;
}