github.com/ashishbhate/mattermost-server@v5.11.1+incompatible/model/channel_member_history.go (about) 1 // Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. 2 // See License.txt for license information. 3 4 package model 5 6 type ChannelMemberHistory struct { 7 ChannelId string 8 UserId string 9 JoinTime int64 10 LeaveTime *int64 11 }