++ aggiunta la prenotazione negli eventi. con la lista degli utenti.

This commit is contained in:
Surya Paolo
2023-04-17 00:11:45 +02:00
parent 6f1f962c0a
commit 3cf4562285
38 changed files with 2016 additions and 1278 deletions

View File

@@ -1,6 +1,7 @@
import { IToken } from '@model/other'
import { ICart, IOrderCart, IShareWithUs } from '@src/model/Products'
import { IAccount, ICircuit, IGallery, IImgGallery, IMyCircuit } from '@model/GlobalStore'
import { IBookedEvent } from './Calendar'
const enum ESexType {
None = 0,
@@ -71,6 +72,12 @@ export interface ISeen {
tab: number
}
export interface IAttend {
id: string
tab: number
num: number
}
export interface IFavBook {
username: string
}
@@ -137,9 +144,14 @@ export interface IUserProfile {
bookmark: IBookmark[]
favorite: IFavorite[]
seen: ISeen[]
attend: IAttend[]
// Query
myfav: IFavBook[]
mybook: IFavBook[]
myseen: IFavBook[]
myattend: IFavBook[]
mybookings: IBookedEvent[]
// in memory
asked_friends: any[]