mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Cherry-picking7b2861de3ato master because enterprise/master has code in it that enterprise/release-4.7 does not, and I don't want enterprise/master to break the next time somebody merges enterprise/release-4.7 to enterprise/master * Renamed file to match existing scheme (cherry picked from commit8c22c5c6c6)
16 lines
390 B
Go
16 lines
390 B
Go
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package model
|
|
|
|
type ChannelMemberHistoryResult struct {
|
|
ChannelId string
|
|
UserId string
|
|
JoinTime int64
|
|
LeaveTime *int64
|
|
|
|
// these two fields are never set in the database - when we SELECT, we join on Users to get them
|
|
UserEmail string `db:"Email"`
|
|
Username string
|
|
}
|