diff options
Diffstat (limited to 'vendor/github.com/mattermost/mattermost-server/model/channel_member_history.go')
-rw-r--r-- | vendor/github.com/mattermost/mattermost-server/model/channel_member_history.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/github.com/mattermost/mattermost-server/model/channel_member_history.go b/vendor/github.com/mattermost/mattermost-server/model/channel_member_history.go new file mode 100644 index 00000000..55435c32 --- /dev/null +++ b/vendor/github.com/mattermost/mattermost-server/model/channel_member_history.go @@ -0,0 +1,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 +} |