- Added googleToken attribute to the user profile interface

This commit is contained in:
Dejan
2024-10-05 15:53:54 +02:00
parent 7eb040a8a9
commit d4b5ebcb80

View File

@ -13,10 +13,11 @@ export interface User {
birthday?: Date; birthday?: Date;
parentId?: string; parentId?: string;
contact?: string; contact?: string;
email: string email: string;
password: string password: string;
familyId?: string familyId?: string;
uid?: string uid?: string;
googleToken?: string;
} }
export interface ParentProfile extends UserProfile { export interface ParentProfile extends UserProfile {