assignee.js 246 Bytes
Newer Older
1 2
/* eslint-disable no-unused-vars */

3
class ListAssignee {
4
  constructor(user) {
Phil Hughes's avatar
Phil Hughes committed
5 6 7
    this.id = user.id;
    this.name = user.name;
    this.username = user.username;
8
    this.avatarUrl = user.avatar_url;
Phil Hughes's avatar
Phil Hughes committed
9 10
  }
}
11

12
window.ListAssignee = ListAssignee;