feat(interfaces): Db - User

This commit is contained in:
Mathis H (Avnyr) 2024-04-23 16:37:38 +02:00
parent 9cc6ce1275
commit fb493db236
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View 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
}