File

projects/ng-jkmdev-github/src/lib/user-activity/user-activity.model.ts

Constructor

constructor(avatarUrl: string, profileGETUrl: string, username: string)

Properties

Public avatarUrl
avatarUrl: string
Public data
data: any[]
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 = [];
    }
}

results matching ""

    No results matching ""