adding common for new sort of backend and doing sort of proto way...hacky but okay for now

This commit is contained in:
talksik
2022-06-03 10:54:33 -07:00
parent 0d7839dd13
commit f8de994490
7 changed files with 113 additions and 4 deletions
+16
View File
@@ -0,0 +1,16 @@
export class User {
lastUpdatedDate?: Date;
priorityConversations?: string[]; // id of all priority convos
constructor(
public id: string,
public uid: string,
public providerId: string,
public email: string,
public displayName?: string,
public photoUrl?: string,
public phoneNumber?: string,
public createdDate: Date = new Date(),
) {}
}