blob: 7690c453100d29846ab181e512e3075211856de3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package entities
type ExternalURL struct {
BaseModel
Name string `json:"name,omitempty"`
URL string `json:"url,omitempty"`
}
type SimpleTitle struct {
BaseModel
Type string `gorm:"uniqueIndex:idx_simple_title" json:"type,omitempty"`
Title string `gorm:"uniqueIndex:idx_simple_title" json:"title,omitempty"`
}
type SimpleImage struct {
BaseModel
ImageURL string `gorm:"uniqueIndex" json:"image_url,omitempty"`
}
|