- Gruppi
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { IToken } from '@model/other'
|
||||
import { ICart, IOrderCart, IShareWithUs } from '@src/model/Products'
|
||||
import { IGallery } from '@model/GlobalStore'
|
||||
|
||||
const enum ESexType {
|
||||
None = 0,
|
||||
@@ -8,10 +9,26 @@ const enum ESexType {
|
||||
}
|
||||
|
||||
export interface IFriends {
|
||||
username?: string
|
||||
username: string
|
||||
date?: Date
|
||||
}
|
||||
|
||||
export interface IMyGroup {
|
||||
groupname: string
|
||||
title?: string
|
||||
descr?: string
|
||||
photos: IGallery[]
|
||||
visibility?: number
|
||||
date_created?: Date
|
||||
admins?: IFriends[]
|
||||
req_users?: IFriends[]
|
||||
blocked?: boolean
|
||||
website?: string
|
||||
link_telegram?: string
|
||||
username_who_block?: string
|
||||
date_blocked?: Date
|
||||
}
|
||||
|
||||
export interface IUserProfile {
|
||||
img?: string
|
||||
nationality?: string
|
||||
@@ -52,9 +69,11 @@ export interface IUserProfile {
|
||||
myshares: IShareWithUs[]
|
||||
friends: IFriends[]
|
||||
req_friends: IFriends[]
|
||||
groups: IMyGroup[]
|
||||
|
||||
// in memory
|
||||
asked_friends: any[]
|
||||
asked_groups: any[]
|
||||
}
|
||||
|
||||
export interface IPaymentType {
|
||||
|
||||
Reference in New Issue
Block a user