blob: bc71b580a75aecdd2db2e21f67a04d3abaa5107b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package model
type ChannelMemberHistory struct {
ChannelId string
UserId string
UserEmail string `db:"Email"`
JoinTime int64
LeaveTime *int64
}
|