about summary refs log tree commit diff
path: root/pkg/discord/entities.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/discord/entities.go')
-rw-r--r--pkg/discord/entities.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkg/discord/entities.go b/pkg/discord/entities.go
index 85965bf..8a62fc6 100644
--- a/pkg/discord/entities.go
+++ b/pkg/discord/entities.go
@@ -13,3 +13,11 @@ type Guild struct {
 	Name        string    `json:"name"`
 	Unavailable bool      `json:"unavailable"`
 }
+
+type Message struct {
+	ID        Snowflake `json:"id"`
+	ChannelID Snowflake `json:"channel_id"`
+	GuildID   Snowflake `json:"guild_id"`
+	Author    User      `json:"author"`
+	Content   string    `json:"content"`
+}