github.com/jlevesy/mattermost-server@v5.3.2-0.20181003190404-7468f35cb0c8+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 }