UNPKG
trello-sprinter
Version:
latest (2.1.1)
2.1.1
2.1.0
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
Provides summarizations of sprint activity in a Trello project
trello-sprinter
/
src
/
Member.js
10 lines
(9 loc)
•
203 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/* * Representation of a Trello member in a board */
export
const
Member = function(board,
data
) {
this
.board = board;
this
.id =
data
.id;
this
.name =
data
.fullName;
this
.
data
=
data
; }