mirror of
https://github.com/matrix-org/sliding-sync.git
synced 2025-03-10 13:37:11 +00:00
11 lines
221 B
Go
11 lines
221 B
Go
![]() |
package internal
|
||
|
|
||
|
type Receipt struct {
|
||
|
RoomID string `db:"room_id"`
|
||
|
EventID string `db:"event_id"`
|
||
|
UserID string `db:"user_id"`
|
||
|
TS int64 `db:"ts"`
|
||
|
ThreadID string `db:"thread_id"`
|
||
|
IsPrivate bool
|
||
|
}
|