This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
resolver/app/domain/circles/userFollower.ts
2017-10-10 16:39:02 +07:00

41 lines
662 B
TypeScript

import { BaseDomain } from 'domain/common'
export class UserFollower extends BaseDomain {
/**
* Circle creation date time
*
* @type {Date}
* @memberof Circle
*/
public creationDate?: number
/**
* User full name
*
* @type {string}
* @memberof UserFollower
*/
public fullName: string
/**
* Avatar URL address
*
* @type {string}
* @memberof UserFollower
*/
public avatar: string
/**
* If following user approved {true} or not {false}
*
* @type {Boolean}
* @memberof UserFollower
*/
public approved: Boolean
}