13 lines
357 B
Go
13 lines
357 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"`
|
|
PostID string // Foreign key to Post
|
|
Approved bool `json:"approved"`
|
|
Rejected bool `json:"rejected"`
|
|
}
|