Messaging/pkg/models/messages.go

16 lines
481 B
Go
Raw Normal View History

2024-03-30 09:10:36 +00:00
package models
type Message struct {
BaseModel
2024-05-12 14:00:22 +00:00
Content []byte `json:"content"`
Type string `json:"type"`
Attachments []Attachment `json:"attachments"`
Channel Channel `json:"channel"`
Sender ChannelMember `json:"sender"`
ReplyID *uint `json:"reply_id"`
ReplyTo *Message `json:"reply_to" gorm:"foreignKey:ReplyID"`
ChannelID uint `json:"channel_id"`
SenderID uint `json:"sender_id"`
2024-03-30 09:10:36 +00:00
}