blob: 0a3a738761ef13eea79e343d3a8e1f5b63331c5c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package model
type TeamStats struct {
TeamId string `json:"team_id"`
TotalMemberCount int64 `json:"total_member_count"`
ActiveMemberCount int64 `json:"active_member_count"`
}
|