13 lines
275 B
JavaScript
13 lines
275 B
JavaScript
|
/* eslint-disable no-unused-vars */
|
||
|
|
||
|
class ListAssignee {
|
||
|
constructor(user, defaultAvatar) {
|
||
|
this.id = user.id;
|
||
|
this.name = user.name;
|
||
|
this.username = user.username;
|
||
|
this.avatar = user.avatar_url || defaultAvatar;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
window.ListAssignee = ListAssignee;
|