class TeamLead
  constructor: (userId, team) ->
    @id = userId
    @teamName = team

module.exports = TeamLead
