Umbau auf postgres 2. step
This commit is contained in:
14
crawler/UserInterface.ts
Normal file
14
crawler/UserInterface.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
export interface User {
|
||||
id: string;
|
||||
firstname: string;
|
||||
lastname: string;
|
||||
email: string;
|
||||
phoneNumber?: string;
|
||||
description?: string;
|
||||
created_at: Date;
|
||||
updated_at?: Date;
|
||||
isActive: boolean;
|
||||
score?: number;
|
||||
balance?: number;
|
||||
tags?: string[];
|
||||
}
|
||||
Reference in New Issue
Block a user