11 lines
305 B
Go
11 lines
305 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type UnhandledMessage struct {
|
|
ID uint64 `gorm:"primarykey"`
|
|
CreatedAt time.Time
|
|
RawData []byte // Raw data of the message
|
|
ForUserId string // Id of the user this message was for
|
|
GlobalInbox bool // Whether the message was sent to the global inbox
|
|
}
|