mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-28 04:35:04 -04:00
11 lines
260 B
Go
11 lines
260 B
Go
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||
|
|
// See LICENSE.txt for license information.
|
||
|
|
|
||
|
|
package model
|
||
|
|
|
||
|
|
type ReadReceipt struct {
|
||
|
|
PostID string `json:"post_id"`
|
||
|
|
UserID string `json:"user_id"`
|
||
|
|
ExpireAt int64 `json:"expire_at"`
|
||
|
|
}
|