41 lines
667 B
TypeScript
41 lines
667 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;
|
|
|
|
|
|
|
|
}
|