summaryrefslogtreecommitdiffstats
path: root/model/channel_member_history.go
blob: 55435c3206f7c469b06fae8f45af14d92c2b2486 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package model

type ChannelMemberHistory struct {
	ChannelId string
	UserId    string
	JoinTime  int64
	LeaveTime *int64
}