Files
CatsOfMastodonGo/models/mediaAttachment.go
2025-05-10 20:35:16 +03:30

12 lines
313 B
Go

package models
type MediaAttachment struct {
ID string `json:"id" gorm:"primaryKey"`
Type string `json:"type"`
Url string `json:"url"`
PreviewUrl string `json:"preview_url"`
RemoteUrl string `json:"remote_url"`
Approved bool `json:"-"`
PostID string // Foreign key to Post
}