feat(interfaces): ✨ Db - User
This commit is contained in:
parent
9cc6ce1275
commit
fb493db236
12
src/interfaces/database/IDbUser.ts
Normal file
12
src/interfaces/database/IDbUser.ts
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
export interface IDbUser {
|
||||||
|
id?: string;
|
||||||
|
username: string;
|
||||||
|
firstname: string;
|
||||||
|
lastname: string;
|
||||||
|
dob: Date;
|
||||||
|
email: string;
|
||||||
|
is_mail_verified: boolean;
|
||||||
|
is_admin: boolean;
|
||||||
|
gdpr: Date;
|
||||||
|
hash: string
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user