[New Feature] Apply graph strategy
This commit is contained in:
@@ -1,53 +1,53 @@
|
||||
import { BaseDomain } from 'core/domain/common'
|
||||
|
||||
export class User extends BaseDomain {
|
||||
|
||||
|
||||
/**
|
||||
* Full name of user
|
||||
*
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof User
|
||||
*/
|
||||
public fullName: string
|
||||
public fullName: string
|
||||
|
||||
/**
|
||||
* User avatar address
|
||||
*
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof User
|
||||
*/
|
||||
public avatar: string
|
||||
public avatar: string
|
||||
|
||||
/**
|
||||
* Email of the user
|
||||
*
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof User
|
||||
*/
|
||||
public email?: string | null
|
||||
public email?: string | null
|
||||
|
||||
/**
|
||||
* Password of the user
|
||||
*
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof User
|
||||
*/
|
||||
public password?: string | null
|
||||
public password?: string | null
|
||||
|
||||
/**
|
||||
* User identifier
|
||||
*
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof User
|
||||
*/
|
||||
public userId?: string | null
|
||||
|
||||
public userId?: string | null
|
||||
|
||||
/**
|
||||
* User creation date
|
||||
*
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof User
|
||||
*/
|
||||
public creationDate: number
|
||||
|
||||
}
|
||||
public creationDate: number
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user