File
Constructor
constructor(avatarUrl: string, profileGETUrl: string, username: string)
|
Public avatarUrl
|
avatarUrl: string
|
Public profileGETUrl
|
profileGETUrl: string
|
Public username
|
username: string
|
export class UserActivity {
public avatarUrl: string;
public profileGETUrl: string;
public username: string;
public data: Array<any>;
constructor(avatarUrl?: string, profileGETUrl?: string, username?: string){
this.avatarUrl = avatarUrl || '';
this.profileGETUrl = profileGETUrl || '';
this.username = username || '';
this.data = [];
}
}