8 lines
166 B
JavaScript
8 lines
166 B
JavaScript
class ListUser {
|
|
constructor (user) {
|
|
this.id = user.id;
|
|
this.name = user.name;
|
|
this.username = user.username;
|
|
this.avatar = user.avatar_url;
|
|
}
|
|
}
|