src/app/core/models/profile/short-profile.model.ts
Properties |
constructor(name: string, avatarUrl: string)
|
Public avatarUrl |
avatarUrl:
|
Type : string
|
Public name |
name:
|
Type : string
|
export class ShortProfile {
constructor(public name: string, public avatarUrl: string) {}
}