2024-08-19 06:35:24 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
type LinkMeta struct {
|
|
|
|
BaseModel
|
|
|
|
|
2024-08-19 06:52:33 +00:00
|
|
|
Entry string `json:"entry_id" gorm:"uniqueIndex"`
|
2024-08-19 06:35:24 +00:00
|
|
|
Icon string `json:"icon"`
|
|
|
|
URL string `json:"url"`
|
|
|
|
Image *string `json:"image"`
|
|
|
|
Title *string `json:"title"`
|
|
|
|
Video *string `json:"video"`
|
|
|
|
Description *string `json:"description"`
|
|
|
|
}
|