new version Visualizzazione Service

This commit is contained in:
Surya Paolo
2023-04-04 15:27:03 +02:00
parent 0365c58326
commit edcd244397
35 changed files with 841 additions and 55 deletions

View File

@@ -57,6 +57,16 @@ export interface IUserNotifType {
value: number
}
export interface IBookmark {
id: string
tab: number
}
export interface IFavorite {
id: string
tab: number
}
export interface IUserProfile {
img?: string
@@ -117,6 +127,8 @@ export interface IUserProfile {
noNameSurname: boolean
noCircuit: boolean
noFoto: boolean
bookmark: IBookmark[]
favorite: IFavorite[]
// in memory
asked_friends: any[]