Files
Foundry-Scrapping-API/internal/foundry/temp_models/db/message.go

29 lines
369 B
Go

package db
type Message struct {
ID string
Blind bool
Emote bool
Style int
Timestamp int64
Content string
Author string
Type string
Flavor string
Sound string
Stats Stats
Speaker Speaker
Whisper []string
Rolls []string
}
type Speaker struct {
ID uint
Scene string
Actor string
Token string
Alias string
}