15 lines
270 B
Go
Raw Normal View History

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
}