2023-11-07 15:04:47 -04:00

15 lines
270 B
Go

package scraper
type DMID string
type DM struct {
ID DMID `db:"id"`
Time int
Request int
ConversationID ConversationID
RecipientID UserID
SenderID UserID
Text string
MessageReactions []DMReaction
}