blob: f6a5a578ee3cdd1ad0039f261ef4f0d6c08212b3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package entities
type Genre struct {
BaseModel
Name string `json:"name,omitempty"`
GenreID int `gorm:"uniqueIndex" json:"genre_id,omitempty"`
URL string `json:"url,omitempty"`
Count int `gorm:"default:0" json:"count,omitempty"`
Anime []Anime `gorm:"many2many:anime_genres;" json:"anime,omitempty"`
}
|