renaming api

This commit is contained in:
talksik
2022-06-08 04:49:07 -05:00
parent 1a79fb4c36
commit 87be0e303f
16 changed files with 114 additions and 0 deletions
@@ -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(),
) {}
}