mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-09 16:42:48 +00:00
13 lines
337 B
Go
13 lines
337 B
Go
package model
|
|
|
|
// Attachment - discord message attachment
|
|
type Attachment struct {
|
|
MessageID string `gorm:"primary_key" json:"id"`
|
|
URL string `json:"url"`
|
|
ProxyURL string `json:"proxy_url"`
|
|
Filename string `json:"filename"`
|
|
Width int `json:"width"`
|
|
Height int `json:"height"`
|
|
Size int `json:"size"`
|
|
}
|