[New Feature] Apply graph strategy

This commit is contained in:
Qolzam
2018-01-12 13:40:59 +07:00
parent 7231c59f92
commit e38dbc9fd3
169 changed files with 2931 additions and 2580 deletions

View File

@@ -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
}